查看版本控制状态:

git status

添加文件到暂存区:

git add <filename>          # 添加单个文件
git add .                   # 添加所有修改过的文件

提交更改:

git commit -m "提交信息"

查看提交历史:

git log

克隆仓库:

git clone <repository_url>

创建和切换分支:

git branch <branch_name>    # 创建分支
git checkout <branch_name>  # 切换分支
git checkout -b <branch_name> # 创建并切换到新分支

合并分支:

git merge <branch_name>

查看远程仓库:

git remote -v

推送到远程仓库:

git push origin <branch_name>

从远程仓库拉取更新:

git pull origin <branch_name>

创建标签:

git tag <tag_name>

查看所有标签:

git tag

删除本地分支:

git branch -d <branch_name>

删除远程分支:

git push origin --delete <branch_name>

One thought on “常用 Git 命令

Leave a reply

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> 

required