git绑定上传已存在的仓库到github

之前使用github都是创建一个全新的仓库,然后clone下来用,但如果我已经有一个正在使用的仓库,想要绑定上传已存在的仓库到github,怎么做呢?其实在github创建仓库的时候会提示:

…or push an existing repository from the command line

git remote add origin https://github.com/lyj00912/Duino9341.git
git push -u origin master

用这两句命令可以绑定上传已存在的仓库到github。

相关推荐