git merge origin/dev --strategy=resolve
git branch --merged | grep -v 'dev' | xargs -n 1 git branch -d
Git 之删除本地无用分支_dearfulan 的博客 - CSDN 博客_git 删除本地无效分支
git fetch -p
git remote prune origin
git merge-base [-a|--all] <commit> <commit>…
git branch --contains <commit>
git branch -r --contains <commit>
git tag --contains <commit>
git rev-list --count HEAD
git rev-parse HEAD
# 如果只是查看,则直接使用 show 命令就可以
git show HEAD
git config --global alias.co checkout
git config --global alias.lg log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
提交检出均不转换
git config --global core.autocrlf false
允许提交包含混合换行符的文件
git config --global core.safecrlf false
git reflog show --color --abbrev-commit --all --pretty=oneline --date=short --after="2020-05-22" | grep 'commit' | grep -v 'refs'
git commit -m "version + 2" --allow-empty