先在github上建立一个项目,如果初次上传,先执行git clone +项目地址
每次提交只需要执行:git add *
git commit -m "备注信息"
git push origin master
说的都太片面,实际操作。。。我是初学者。。。
@TheCode: 这个够详细的了:http://www.cnblogs.com/xiao-lei/p/6267123.html
@与阳光握手言和: 谢谢了。
参考
http://blog.csdn.net/hanhailong726188/article/details/46738929
1、注册一个github账号
2、学习一下git命令,不想学的话,下载github客户端,也能先凑合着用。
远程仓库为空,本地无git仓库。
1. 初始化git
git init
2.添加
git add .
3. 提交
git commit -m "first commit"
4. 设置远程仓库地址
git remote add origin URL.git
git push -u origin master
https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/00137628548491051ccfaef0ccb470894c858999603fedf000 这个里面有详细的教程