git 常用命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 常用命令相关的知识,希望对你有一定的参考价值。
#下载代码
git clone http://12.git
#切换分支
git checkout develop
#更新代码
git pull
#提交.所有 #撤销提交
git add . git reset .
#写注释
git commit -m‘注释‘
#提交远程分支
git push origin develop
#更新分支列表
git fetch origin --prune
以上是关于git 常用命令的主要内容,如果未能解决你的问题,请参考以下文章