分支操作
git branch -av; // 查看本地和远程所有分支
git push origin branchName; // 将本地分支提交到远程分支
git push origin branchName1:branchName2; // 将本地分支 [branchName1] 重命名为 [branchName2] 并提交到远程分支
git push origin :branchName; // 删除远程分支
git branch -d branchName; // 删除本地分支
git branch -D branchName; // 强制删除本地分支
日志操作
git log --oneline -number; // 日志在一行展示,之前前面的【number】条
查看帮助命令:
git config --help
git help config
man git-config
查询配置
git config user.name
// 或者
git config --get user.name
查看所有 global 配置
git config -l --global
删除配置
global config --global --unset user.name GrandKai
global config --global --add user.name test
修改配置
global config --global user.name GrandKai
别名
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.st status
git config --global alias.ci commit
Git设置当前分支为默认push分支
git config --global push.default "current"