【Git】git命令大全(持续更新)
Git是一个开源的分布式版本控制系统,可以有效、高效地处理从小型到大型项目的版本管理。以下是一些常见的Git命令:
- 创建新的git仓库
# 在当前目录初始化git仓库
git init
# 克隆远程仓库到当前目录
git clone [url]
- 配置git
# 设置用户名
git config --global user.name "[name]"
# 设置用户邮箱
git config --global user.email "[email address]"
- 检查当前文件状态
git status
- 添加文件到暂存区
# 添加所有文件
git add .
# 添加指定文件
git add [file]
- 提交更改
git commit -m "[commit message]"
- 查看提交历史
git log
- 比较文件差异
# 比较工作目录和暂存区
git diff
# 比较暂存区和最后一次提交
git diff --cached
# 比较两次提交之间的差异
git diff [commit1] [commit2]
- 撤销更改
# 撤销工作目录中的更改
git checkout [file]
# 撤销暂存区的更改
git reset [file]
# 重置所有更改
git reset --hard
- 分支管理
# 列出所有分支
git branch
# 创建新分支
git branch [branch-name]
# 切换到指定分支
git checkout [branch-name]
# 创建并切换到新分支
git checkout -b [branch-name]
# 合并指定分支到当前分支
git merge [branch-name]
# 删除分支
git branch -d [branch-name]
- 远程仓库操作
# 添加远程仓库
git remote add origin [url]
# 拉取远程仓库的更改
git pull origin [branch-name]
# 推送到远程仓库
git push origin [branch-name]
- 标签管理
# 列出标签
git tag
# 创建轻量级标签
git tag [tag-name]
# 创建带有注释的标签
git tag -a [tag-name] -m "[message]"
# 删除本地标签
git tag -d [tag-name]
# 删除远程标签
git push origin :refs/tags/[tag-name]
# 推送标签到远程仓库
git push origin [tag-name]
- 其他常用命令
# 查看文件的修改历史
git blame [file]
# 删除文件
git rm [file]
# 查看远程仓库信息
git remote -v
# 重命名分支
git branch -m [old-branch] [new-branch]
# 使用一行命令创建并切换到新分支
git checkout -b [branch-name]
这些是Git的基础和常用命令。Git有许多高级功能和工作流程,如Stashing、Pull Requests、Rebasing等,都可以通过这些命令实现。
评论已关闭