git工具使用小结

一、工具设置

  • git config --global user.name "Your Name"    #设置用户名
  • git config --global user.email "email@example.com"    #设置Email地址
  • git config --global credential.helper store    #永久保存密码
  • git config --global http.proxy "127.0.0.1:8087"    #设置代理地址


二、代码仓库设置


三、常用命令

  • git branch 2    #创建版本
  • git checkout 1    #切换版本
  • git push sae --delete 1    #删除分支版本
  • git branch -a    #查看所有分支
  • git add .    #添加文件至缓存区
  • git commit -am "make it better"    #
  • git push sae master:1    #master为本地分支
  • git clone -b 1 -o sae https://git.sinaapp.com/duanyablog/    #克隆远程特定版本
  • git pull <远程> <版本>:<本地>    #合并远程分支到本地