Git 命令笔记

设置用户信息
  git config --global user.name "名字"
  git config --global user.email "邮箱地址"


设置终端配色
   git config --global color.diff auto
   git config --global color.status auto
   git config --global color.branch auto
   git config --global color.interactive auto
   git config --global color.ui auto


重命名分支
git branch -m old_branch new_branch


删除远程分支
git push origin :分支名称


清理无效的远程分支引用(可使用-n参数预演哪些分支引用将会被清除)
git remote prune origin


合并两个分支,忽略行尾的空格和换行符差异
git merge -s recursive -Xignore-space-at-eol

https://www.kernel.org/pub/software/scm/git/docs/git-merge.html

有用的配置 ~/.gitconfig
[alias]
   glog = log --pretty=oneline --abbrev-commit --graph --decorate


Global Ignore
git config --global core.excludesfile '~/.gitignore'


git difftool ( http://blog.csdn.net/offbye/article/details/6592563)
git difftool -t meld -y branch1 branch2
git difftool -t meld -y branch1 branch2 config/database.yml
git difftool -t meld -y  commitId1  commitId2
git difftool -t meld -y  HEAD


设置全局.gitignore文件
git config --global core.excludesfile '~/.gitignore'


git apply
http://www.cnblogs.com/y041039/articles/2411600.html

你可能感兴趣的:(git)