Git novice, please tell me how to synchronize the local warehouse to the server, make local modifications and then submit them to the server remotely. It would be best to have relevant tutorial links, thank you
http://www.liaoxuefeng.com/wi...
STEP1 Temporary storage: git add <文件> STEP2 提交到本地仓库:git commit -m <提交信息> STEP3 推送到远程服务器:git push <远程服务器> <分支>
git add <文件>
git commit -m <提交信息>
git push <远程服务器> <分支>
If you are not familiar with it, just use the following (change the submission information and pay attention to the branch):
git add . git commit -m ":tada: first commit" git push origin master
It is recommended to refer to pro git
You can use jenkins
http://www.cnblogs.com/dojo-l...
Liao Xuefeng git
http://www.liaoxuefeng.com/wi...
http://www.liaoxuefeng.com/wi...
STEP1 Temporary storage:
git add <文件>
STEP2 提交到本地仓库:
git commit -m <提交信息>
STEP3 推送到远程服务器:
git push <远程服务器> <分支>
If you are not familiar with it, just use the following (change the submission information and pay attention to the branch):
It is recommended to refer to pro git
You can use jenkins
http://www.cnblogs.com/dojo-l...
Liao Xuefeng git