Loading

随笔分类 -  Git 系列

摘要:Existing folder cd existing_folder git init git remote add origin http://仓库地址.git git add . git commit -m "Initial commit" git push -u origin master E 阅读全文
posted @ 2021-11-16 12:30 IT搬瓦工 阅读(260) 评论(0) 推荐(0)
摘要:常用git stash命令: (1)git stash save "save message" : 执行存储时,添加备注,方便查找,只有git stash 也要可以的,但查找时不方便识别。 (2)git stash list :查看stash了哪些存储 (3)git stash show :显示做了 阅读全文
posted @ 2021-02-06 15:43 IT搬瓦工 阅读(133) 评论(1) 推荐(0)