标签:
更新github上的已有项目:
将repository clone到本地
shanyu@debian:~/Git$ git clone https://github.com/xunbu7/HelloWorld.git
添加py.md文件并提交
shanyu@debian:~/Git/HelloWorld$ touch py.md shanyu@debian:~/Git/HelloWorld$ git add py.md shanyu@debian:~/Git/HelloWorld$ git commit -m "py"
向GitHub推送,完成版本库初始化。
shanyu@debian:~/Git/HelloWorld$ git push origin master
//输入的用户名密码为github用户的用户名密码 Username for ‘https://github.com‘: xunbu7@gmail.com Password for ‘https://xunbu7@gmail.com@github.com‘:
标签:
原文地址:http://www.cnblogs.com/xunbu7/p/5612537.html