# github操作指令
# 切换分支
git checkout feature/new-doc-ini
# 查看提交情况
git status
# 保存提交代码
git commit -m 'xxxx'
# 提交到远程分支
git push origin feature/new-doc-init
# 合并代码
git merge --no-ff feature/new-doc-init git push origin develop
# 查看分支
git branch
# 查看远程分支
git branch -a
# 比较远程分支与本地分支
git remote prune origin
# 修改控制台颜色
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"