Git常用操作指令

  1. 初始化配置

    配置全局用户名和邮箱

    git config --global user.name "账号"
    git config --global user.email "邮箱"

    查看配置信息

    git config --list

  2. 仓库初始化创建新的 Git 仓库:

    初始化新仓库

    git init

    克隆远程仓库

    git clone URL

  3. 状态查看实时了解仓库状态:

    查看工作区状态

    git status

    查看简化状态信息

    git status -s

    查看本地分支

    git branch

    查看远程分支

    git branch -r

    查看本地和远程所有分支

    git branch -a

  4. 添加和提交基本的版本控制操作:

    添加指定文件到暂存区

    git add <file-name>

    添加所有更改

    git add .

    提交到本地仓库

    git commit -m "commit message"

    添加并提交

    git commit -am "commit message"

    移除暂存区的提交

    git reset
    git reset <file>

    将提交推送到远程仓库

    git push

    将本地当前分支提交到远程指定分支remote-branch

    git push origin remote-branch

  5. 分支操作:

    创建新分支

    git branch <branch-name>

    切换分支

    git checkout <branch-name>

    创建并切换分支

    git checkout -b <branch-name>

    删除分支

    git branch -d <branch-name>

  6. 远程仓库操作与远程仓库交互:

    添加远程仓库

    git remote add origin <repository-url>

    查看远程仓库

    git remote -v

    推送到远程

    git push origin <branch-name>

    拉取远程更新

    git pull origin <branch-name>

  7. 分支合并:

    #提交brancheA某次的commit merge到指定分支branchB
    git log brancheA 获取到需要merge 的commit 的哈希值 hash
    git checkout branchB
    git cherry-pick hash
    git status 查看是否已经更新
    git push 将更新推送到远程

    合并分支

    git merge <branch-name>

    变基操作

    git rebase <branch-name>

    解决冲突后继续变基

    git rebase --continue

  8. 暂存操作临时保存工作进度:

    保存当前工作进度

    git stash

    查看存储的工作进度

    git stash list

    恢复最近的进度

    git stash pop

    删除所有进度

    git stash clear

  9. 日志查看查看提交历史:

    查看提交日志

    git log

    查看简化日志

    git log --oneline

    查看图形化日志

    git log --graph --pretty=oneline --abbrev-commit

  10. 差异比较比较:

    查看工作区和暂存区的差异

    git diff

    查看暂存区和最新提交的差异

    git diff --staged

    查看两个分支的差异

    git diff <branch1> <branch2>

  11. 撤销操作修正错误操作:

    撤销工作区的修改

    git checkout -- <file-name>

    撤销暂存区的修改

    git reset HEAD <file-name>

  12. 日常工作流程

    更新本地代码

    git pull origin main

    创建功能分支

    git checkout -b feature/new-feature

    推送到远程

    git push origin feature/new-feature

相关推荐
qianmoQ12 分钟前
GitHub 趋势日报 (2025年05月14日)
github
ice___Cpu3 小时前
Git - 1( 14000 字详解 )
大数据·git·elasticsearch
Yvonne爱编码4 小时前
CSS- 2.1 实战之图文混排、表格、表单
前端·css·html·github·状态模式·html5·hbuilder
qianmoQ13 小时前
GitHub 趋势日报 (2025年05月11日)
github
Yvonne爱编码15 小时前
HTML-3.3 表格布局(学校官网简易布局实例)
前端·html·github·html5·hbuilder
范纹杉想快点毕业19 小时前
以项目的方式学QT开发(一)——超详细讲解(120000多字详细讲解,涵盖qt大量知识)逐步更新!
c语言·数据结构·c++·git·qt·链表·github
qq_6536444621 小时前
如何查看打开的 git bash 窗口是否是管理员权限打开
开发语言·windows·git·bash
tonngw21 小时前
【Mac 从 0 到 1 保姆级配置教程 12】- 安装配置万能的编辑器 VSCode 以及常用插件
git·vscode·后端·macos·开源·编辑器·github
八股文领域大手子1 天前
HTTP/1.1 host虚拟主机详解
github
橄榄熊1 天前
Git 常用命令详解
git