2013年3月27日 星期三

[Git][Gerrit] 移動版本庫;從git移到gerrit


1. Gerrit先開project

2. 可看到目前遠端版本庫僅有origin
$ git remote -v

3. 在Gerrit Project中新增一個遠端版本庫git1
$ git remote add git1 ssh://git@10.109.39.56/home/git/git1.git

4. 可看到目前遠端版本庫有origin跟git1
$ git remote -v

5. 將git1的資料fetch下來
$ git fetch git1

6. 可在branch中看到remote的git1
$ git branch -a

7. 切換到master,並將remote的git1 merge進來
$ git checkout master
$ git merge git1/master

8. 上傳
$ git push

8.1 若是要將A branch push到B branch
$ git push origin [branch_a]:[branch_b]

沒有留言:

張貼留言