git 使用记录

http://www.freebiebitcoin.com/

1.git branch -a
//查看所有分支
2.git branch -r
//查看远程分支
//新建远程分支
//1)新建一个本地分支,当前分支为源创建本地分支
3.git checkout -b dbg/1.0
//2)把新建的本地分支push到远程服务器,远程分支与本地分支同名
4.git push origin dbg/1.0:dbg/1.0
  git branch --set-upstream-to=origin/dbg/1.0 dbg/1.0
//删除远程分支
5.git push origin :dbg/1.0
6.git push origin --delete dbg/1.0
//删除本地分支
7.git branch -d dbg/1.0
//切换到合并目标分支,合并需要的分支
8.git pull
  git merge dbg/1.0
//分支指针丢失,重建
9.git remote set-head origin -a

//查看历史提交的commit id
10.git log --pretty=oneline --abbrev-commit
//对commit id打tag
11.git tag v0.9 f52c633

你可能感兴趣的:(git 使用记录)