git命令,看了始终忘不了的命令

 
将更新提交到暂存库中:
 

git add .

将暂存库中的内容提交到仓库:

git commit -m “add application.yml file”

进行远程仓库的同步推送:

git push origin master

发布了458 篇原创文章 · 获赞 15 · 访问量 3万+

猜你喜欢

转载自blog.csdn.net/qq_32370913/article/details/105404912