Git
Migrate my notes on Git from Google Keep to here
PR steps
- create fork in the console
git pull
andgit checkout -b new_branch
- modify/add/commit/push origin
git push --set-upstream origin new_branch
- create pull request
Sync your fork
-
git remote add upstream git@xxxxx
git fetch upstream
git checkout main
andgit merge upstream/main
push fetched to fork
git push
# to update- more modify/push
git brach -d new_branch
git push origin -d new_branch
( delete the one in the console)