Closed as not planned
Description
If you are trying to move a PR you made to ethereum/eips
over to ethereum/ercs
, the steps below will guide you through the process:
-
Fork this repository within GitHub:
- Navigate to ethereum/ERCs.
- Find the "Fork" button in the upper right side of the screen and click it.
- Proceed with repository creation.
-
Clone your fork locally:
git clone https://github.com/{user}/ercs
-
Enter the newly created
ercs
folder:cd ercs
-
Add your fork of the EIPs repository as a remote:
git remote add eips https://github.com/{user}/eips
-
Fetch that remote to download your branches:
git fetch eips
-
Now checkout the branch related to your original PR:
git checkout {branch}
-
Rebase your branch against the ERCs repo:
git rebase master
- Please note, you do not need to update any references of EIP to ERC; particularly in the relative links. Even though
[ERC-X](./eip-x.md)
doesn't correctly render in this repository, we're currently building the fulleips.ethereum.org
still in theethereum/eips
repository. So until we resolve this in Pending tasks for ERC migration #1, we will continue using this relative linking format.
-
Push your branch to your ERCs fork:
git push -u origin {branch}
-
Now you can recreate your pull request:
- Navigate to https://github.com/ethereum/ERCs/compare
- Select your newly created fork and branch
- open a new PR to this repo.
Additional notes:
- Do NOT link to ERCs using their filename. Link to ERCs using
[ERC-XXXX](./eip-XXXX.md)
.