将项目上传到GitHub

将项目上传到GitHub

https://blog.csdn.net/m0_37725003/article/details/80904824

本地仓库与GitHub仓库同步

https://blog.csdn.net/ithanmang/article/details/80869923

右键没有Git Bush Here

https://blog.csdn.net/niu9799/article/details/80755895

修改文件之后更新GitHub仓库

1、如果是在修改文件的当前目录下

  (1)git add 文件名.后缀

  (2)git commit -u -m "注释内容"

  (3)git push

2、如果没有在修改文件的当前目录下

  (1)git commit -a -m "注释内容"

  (2)git push

猜你喜欢

转载自www.cnblogs.com/shitou911013/p/12454162.html