前面的一篇博客我介绍了git传输文件的一些基本指令。
但其实对于传输本地文件到云端,如果没特殊需求,按如下最简便快捷的方法即可:
配置user.name这些是为了让github项目主人看到你是谁,所以如果只是个人使用,不配置也ok,在github上会显示是匿名用户的commit。
1.克隆项目到本地:
git clone url
如我使用的:
git clone http://github.com/Victor-Lv/Study.git
2.git add .
3.
git commit -m "update"
4.
git push -u origin master
5.弹出窗口填写用户名和密码