git常用命令

Posted by KANG's BLOG on Tuesday, March 15, 2022

clone仓库

git clone

列出远程分支

git branch -r

列出所有分支

git branch -a

切换分支

git checkout -b 本地仓储名称 origin/远程仓储名称

把文件加入到版本管理中

git add 文件名

将其他分支merge到当前分支

git merge 其他分支名

拉取分支在远程仓库中的提交记录

git pull

把变更内容合成一个commit提交到本地仓库中

git commit -m ‘提交说明’

推送分支的提交记录到远程仓库

git push

用户信息

git config user.name git config user.email