Git常用操作简记

Git常用操作简记

基本操作 git clone git链接 #克隆remote代码 git clone -b branch名字 git链接 #指定remote的分支克隆 git branch #查看本地分支 git branch -d [name] #删除分支, -d选项只能删除已经参与了合并的分支,对于未有合并的分支是无法删除的。如果想强制删除一个分支,可以使用-D选项 git push origin --delete branch_name #删除remote分支 git branch -r #查看remote分支 git br...

2014-08-13 402 0 git工具
1