Scripts¶
Workflow for Forked Repo¶
Can set the upstream of main/master branch to genesis
so everytime when you create a new branch, it's based on the remote main. This could avoid
git remote add genesis [email protected]/xxx/blabla
git branch --set-upstream-to genesis/main main
git pull & git checkout -b <your-branch>