Home | 簡體中文 | 繁體中文 | 雜文 | Search | ITEYE 博客 | OSChina 博客 | Facebook | Linkedin | Email

4.4. Manager remote

remote add

		
git remote add origin git@localhost:example.git
		
		

remote show

		
git remote show
origin
		
		

remote rm

		
git remote rm origin
		
		

添加多個遠程倉庫

git remote add origin git@localhost:example.git
git remote add another https://gitcafe.com/netkiller/netkiller.gitcafe.com.git
git push origin master
git push another master		
		
comments powered by Disqus