Demo
- git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git
- git remote -v
- git fetch upstream
- git checkout main
- git merge upstream/main
git
git clone
git -help or help
git init
git status
git checkout
git checkout -b branch-name
git branch --list
git branch branch-name
git stash
git branch -d branch-name
git push -delete origin
git fetch -p
git fetch --all
git branch -a
git branch -r
git add .
git add -A
git commit -m ""
git push
git pull
git stash push --include-untracked
git stash drop