如今有不少代碼管理平臺,例如github,oschina-git,coding.net,個人網速有時候訪問github比較慢。這時候我使用國內的。可是隻使用一家我已不知道個人代碼在他們的管理平臺是否足夠安全。因此我須要將個人代碼同時放到多個平臺java
我本地遊一份代碼 每次寫完後。我同時推送到多個平臺去,下面我使用oschina-git,和coding.net的演示git
1 須要本身去oschina-git或者coding.net 創建好倉庫,去對應網站操做。github
可是這裏注意,咱們以oschina爲咱們的默認遠程倉庫,coding爲備份倉庫,安全
我麼要創建2個空倉庫,不要添加readme.md和版權聲明ide
2 本地創建工程目錄,這個目錄能夠先用ide創建好而後你再使用git init 初始化fetch
mkdir Test cd Test git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://git.oschina.net/rayzhang/Test.git git push -u origin master //這裏輸入帳號密碼,就是你oschina-git 登錄的帳號密碼 ,到這裏我門就將咱們的代碼存到了oschina-git的託管平臺
3將coding遠程倉庫加入配置文件(.git/config)網站
~/workspace/git/test/ [master] git remote add coding-remote https://coding.net/rudy/Test.git
4查看一下,[coding-remote]小節就是咱們添加的url
~/workspace/git/Test/ [master] cat .git/config [core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true ignorecase = true precomposeunicode = true [remote "origin"] url = https://git.oschina.net/rayzhang/Test.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "master"] remote = origin merge = refs/heads/master [remote "coding-remote"] url = https://coding.net/rudy/Test.git fetch = +refs/heads/*:refs/remotes/coding-remote/*
5 而後將代碼保存到 coding.netspa
git push coding-remote master //這裏的coding-remote就是配置文件config[remote 「coding-remote」]而後輸入帳號密碼,和上面同樣
6 由於oschina是默認的倉庫 更新時候 git pull 是直接去oschina-git取得,要是使用coding。net 須要 git pull coding-remote master.net
7使用事例
touch 1.java git add . git commit -m "add 1.java" git push origin 輸入帳號密碼 git push coding-remote master 輸入帳號密碼
相關操做問題解決,借鑑了 http://my.oschina.net/SnifferApache/blog/314880