新增 ssh private key
#cp [email protected] ~/.ssh
#chmod 600~/.ssh/[email protected]
# ssh-add ~/.ssh/[email protected]
使用repo指令碼同步android git庫
# curl > ~/bin/repo
# chmod 755 repo
# repo init -u git@git_server_ip:android/manifest -b my_branch
# repo sync
同步乙個git目錄
#cd kernel
#repo sync .
如何將my_branch分支push到git internal server.
$ repo init -u git@git_server_ip:git /manifest -b my_branch
$ repo sync
$ repo forall -c 'git checkout -b my_branch remote_git/my_branch'
$ repo forall -c 'git remote add 你的內部伺服器遠端名 你的內部伺服器url'
$ repo forall -c 'git push 你的內部伺服器遠端名my_branch'
repo和git的常用命令
關於repo的一些命令 1 怎樣在 資料夾下所有git庫都建立分支?repo start all 分支名 2 怎樣刪除 資料夾下所有git庫的分支?repo abandon 分支名 1和2其實就是相反的動作 3 怎樣知道 資料夾下都改動了那些?repo diff 4 怎樣把我的提交上傳的gerrit...
Repo常用命令
repo介紹android 使用 git 作為 管理工具,開發了 gerrit 進行 審核以便更好的對 進行集中式管理,還開發了 repo 命令列工具,對 git 部分命令封裝,將百多個 git 庫有效的進行組織.源 標記和細分版本使用國內源export repo url export repo u...
Repo和Git 版本管理常用命令總結
repo init u git 192.168.1.11 i700t 60501010 platform manifest.git b froyo almond m m76xxtsncjnlya60501010.xml repo sync repo forall c git checkout tra...