Git Common Commands
作者:XD / 发表: 2022年2月15日 03:54 / 更新: 2022年2月15日 03:54 / 编程笔记 / 阅读量:2436
git status To check all modified files.
git add . To add the modified file to the cache.
git commit -m "info" To commit all changes.
git push origin master To commit to git.
git show To display details of all changes.
git pull To pull the main branch.
git pull origin master To pull the master branch.
相关标签
