标签:
在本地写好项目后,需要上传到GitHub。步骤如下:
1 git init
2 git add .
3 git commit -m "the first commit"
4 git remote add origin https://github.com/Account/XXX.git
5 git pull --rebase origin master
6 git push -u origin master
标签:
原文地址:http://www.cnblogs.com/Mokaffe/p/5040275.html