从码云到github

版权声明:经验之谈,不知能否换包辣条,另,转载请注明出处。 https://blog.csdn.net/zhezhebie/article/details/86737001

…or create a new repository on the command line

echo "# wechat" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/xxx/wechat.git
git push -u origin master

…or push an existing repository from the command line

git remote add origin https://github.com/xxx/wechat.git
git push -u origin master

…or import code from another repository
You can initialize this repository with code from a Subversion, Mercurial, or TFS project.

猜你喜欢

转载自blog.csdn.net/zhezhebie/article/details/86737001