首页 > 代码库 > git 常用命令

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 常用命令