-
Notifications
You must be signed in to change notification settings - Fork 458
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrating Pull Requests from ethereum/EIPs
to ethereum/ERCs
#8
Comments
ethereum/EIPs
to ethereum/ERCs
There has been no activity on this issue for 1 week. It will be closed after 3 months of inactivity. |
This issue was closed due to inactivity. If you are still pursuing it, feel free to reopen it and respond to any feedback. |
There has been no activity on this issue for 1 week. It will be closed after 3 months of inactivity. |
... |
There has been no activity on this issue for 1 week. It will be closed after 3 months of inactivity. |
? |
There has been no activity on this issue for 1 week. It will be closed after 3 months of inactivity. |
This issue was closed due to inactivity. If you are still pursuing it, feel free to reopen it and respond to any feedback. |
|
If you are trying to move a PR you made to
ethereum/eips
over toethereum/ercs
, the steps below will guide you through the process:Fork this repository within GitHub:
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
[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:
Additional notes:
[ERC-XXXX](./eip-XXXX.md)
.The text was updated successfully, but these errors were encountered: