赞
踩
当你在 GitHub 创建一个代码仓库后,需要將其与你的本地仓库关联起来。
在本地创建一个新仓库并关联:
cd /path/to/repo
touch README.md
git init
git add README.md
git commit -m "First commit"
git remote add origin git@github.com:zhaqiang/learngit.git
git push -u origin master
关联一个已存在的仓库:
cd /path/to/repo
git remote add origin git@github.com:zhaqiang/learngit.git
git push -u origin master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。