ubuntu, ror, jQuery, css, website memo
太嫩, 沒啥心得, 用來紀錄每天學的
2009年12月31日 星期四
Changing Your Origin
Changing Your Origin
# 增加遠端 Repository 的 branch(origin -> project)
git remote add new-branch http://git.example.com.tw/project.git
# 這個動作才是有把遠端的repository 跟 local 綁起來, 而且一定要利用 -b 來新建 branch
# 抓取 new-branch, 並將此 branch 建立於 local 的 reps-branch
git checkout --track -b reps-branch new-branch
目前這樣只到可以pull的地步
但是如果需要push 到不同的remote 端 還需要修改 .git/config
需要補上push 的部份
#just sample
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "public"]
url = git+ssh://repo.or.cz/srv/git/myproject.git
fetch = +refs/heads/*:refs/remotes/public/*
push = refs/heads/master:refs/heads/master
[remote "github"]
url = git@github.com:username/myproject.git
fetch = +refs/heads/*:refs/remotes/github/*
push = refs/heads/*:refs/heads/*
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言