公司裏的git,提交分支

公司裏的git

從一家小公司跳到了大公司,技術沒變,可是開發工具可謂是鳥槍換大炮,首要的問題是從svn 換到了 git,git你們確定都玩過,可是git多人協同操做,估計只有在公司纔有機會玩了。git

這裏我以本身的例子爲例https://github.com/951565664/... 前面步驟很少說了,若是不會,這篇文章不適合你。github

創建一個分支 branch1bash

git clone https://github.com/951565664/testbranch.git

主分支下有一個 master1.txt 文件,內容svn

1.master

而後我修改文件爲工具

- 1.master
+ 1.branch
$ git branch -a
 *master
  remotes/origin/branch1
  remotes/origin/master

$ git checkout branch2
Switched to a new branch 'branch2'
Branch 'branch2' set up to track remote branch 'branch2' from 'origin'.
git add .
git commit -m 'a'
git push origin branch:branch
相關文章
相關標籤/搜索