git config --list --show-origin
git config --global user.name "user_name"
git config --global user.email "user_email@qq.com"
git remove -v
git remote add orgin xxxx.git
git remote rm origin
git log --pretty=oneline
git checkout -- <file_name>
git rm <file_name>
git reset --soft|--mixed|--hard HEAD^ # 回滚到前一个版本
git reset --soft|--mixed|--hard HEAD~n # 回滚到前n+1个版本
git reset --soft|--mixed|--hard <commit_id> # 回滚到对应的commit的版本
git reflog # 查看git reset的日志,用于恢复git reset
- soft:表示保留源码,只回退到commit信息到某个版本,不涉及暂存区的回退,如果还需要提交,直接commit即可。
- mixed:表示会保留源码,只是将git commit和暂存区信息回退到了某个版本。
- hard:会将所有的信息回退到某个版本。
git revert <commit_id>
git checkout -b <branch_name>
git checkout <branch_name>
git branch -d <branch_name>
git branch -D <branch_name>
git merge --no-ff -m "message" <branch_name>
git stash
git stash list
# 第一种方式
git stash pop
# 第二种方式
git stash apply stash@{<id>}
git stash drop
git cherry-pick <commit_id> # 常用来将修复的bug分支合并过来,而不是将整个master分支合并过来
git pull --rebase # 可以减少合并的一次commit,注意本地目录必须是干净的,如果不干净,需要先commit
git branch # 查看本地分支
git branch -r # 查看远程分支
git branch -a # 查看所有分支
git fetch # 远程分支和本地分支同步