Git
Migrate my notes on Git from Google Keep to here
PR steps
- create fork in the console
git pullandgit 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 upstreamgit checkout mainandgit merge upstream/main
push fetched to fork
git push# to update- more modify/push
git brach -d new_branchgit push origin -d new_branch( delete the one in the console)