git 常用命令大全(附命令注释)_git命令大全,大数据开发外包是如何转正华为的
Git是一个开源的分布式版本控制系统,可以有效、高效地处理从小型到大型项目的版本管理。以下是一些常用的Git命令及其注释:
- 创建新的git仓库
git init
- 克隆现有的仓库
git clone [url]
- 查看当前文件状态
git status
- 添加所有文件到暂存区
git add .
- 提交暂存区内容到仓库
git commit -m "commit message"
- 查看提交历史
git log
- 比较文件的不同
git diff [file]
- 连接远程仓库
git remote add origin [url]
- 推送到远程仓库
git push -u origin [branch-name]
- 拉取远程仓库的改动
git pull
- 创建新分支
git branch [branch-name]
- 切换到新分支
git checkout [branch-name]
- 合并分支
git merge [branch]
- 删除分支
git branch -d [branch-name]
- 标签管理
# 列出所有标签
git tag
# 创建轻量级标签
git tag [tag]
# 创建带有注释的标签
git tag -a [tag] -m "message"
# 删除本地标签
git tag -d [tag]
# 删除远程标签
git push origin :refs/tags/[tagName]
# 推送标签到远程
git push [remote] [tag]
# 拉取所有标签
git fetch --tags
- 查看远程仓库信息
git remote -v
- 删除文件
git rm [file]
- 查看远程仓库与本地仓库的差异
git diff [remote]/[branch]
- 撤销更改
# 撤销工作区的更改
git checkout -- [file]
# 撤销暂存区的更改
git reset HEAD [file]
# 撤销已经提交的更改
git revert [commit]
- 查看分支图
git log --graph
这些是Git的基础和常用命令,每个命令都有其特定的用途和使用场景。在实际开发中,根据项目需求和团队协作流程,选择合适的Git命令来管理代码。
评论已关闭