Last active
June 18, 2025 08:53
-
-
Save vadimkantorov/2e70c3d6b1b30bb00de778b1dce0bdef to your computer and use it in GitHub Desktop.
Create a private fork of verl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# reference: https://gist.github.com/0xjac/85097472043b697ab57ba1b1c7530274 | |
git clone --bare [email protected]:volcengine/verl.git | |
cd verl.git | |
# create a bare repo vaidmkantorov/verl | |
git push --mirror [email protected]:vadimkantorov/verl.git | |
cd .. && rm -rf verl.git | |
# set up upstream remote | |
git clone [email protected]:vadimkantorov/verl.git | |
cd verl | |
git remote add upstream [email protected]:volcengine/verl.git | |
git remote set-url --push upstream DISABLE | |
# pull changes from upstream | |
git fetch upstream | |
git rebase upstream/main | |
git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment