Tool

GitHub上传本地代码及更新代码

2018-10-26  本文已影响0人  codeTao

一 github上传代码

step1.png step2.png
git init
git add .
git commit -m "注释语句"
step5.png
git remote add origin https://github.com/honkerSK/sktest.git
git pull origin master
git push -u origin master

二 github更新代码

git status
git add *
git commit -m "更新说明"
git pull
git push origin master

不出意外,打开github已经同步了

上一篇下一篇

猜你喜欢

热点阅读