更新GitHub上的代码

代码更新

1、查看当前的git仓库状态,可以使用git status

git status

2、更新全部

git add *

3、接着输入git commit -m “更新说明”

git commit -m “更新说明”

4、先git pull,拉取当前分支最新代码(也就是获取GitHub上的最新代码信息,更新本地代码)

git pull

5、push到远程master分支上(修改本地代码后,再更新GitHub上的代码)

git push origin master

没有出错的话就更新代码成功了

想知道关于更多关于GitHub上传文件的知识,可以点击:GitHub上传本地代码/更新本地代码

你可能感兴趣的:(更新GitHub上的代码)