# installs nvm (Node Version Manager) curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash # download and install Node.js (you may need to restart the terminal) nvm install 22 # verifies the right Node.js version is in the environment node -v # should print v22.12.0
# verifies the right npm version is in the environment npm -v # should print 10.9.0
#1
Labels
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 # installs nvm (Node Version Manager) curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash # download and install Node.js (you may need to restart the terminal) nvm install 22 # verifies the right Node.js version is in the environment node -v # should printv22.12.0
# verifies the right npm version is in the environment npm -v # should print10.9.0
#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)
.Originally posted by @lightclient in ethereum/ERCs#8
The text was updated successfully, but these errors were encountered: