git常用命令

设置alias

复制代码
git config --global alias.st status
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.unstage "reset HEAD --"
git config --global alias.pl pull
git config --global alias.ps push
git config --global alias.rb rebase
git config --global alias.mr merge
git config --global alias.rs reset
git config --global alias.crp cherry-pick
git config --global alias.cl clone

以下是Git最常用的命令:

  1. 基础配置
bash 复制代码
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
  1. 仓库操作
bash 复制代码
git init            # 初始化仓库
git clone <url>     # 克隆远程仓库
git remote -v       # 查看远程仓库
  1. 基本操作
bash 复制代码
git status          # 查看仓库状态
git add <file>      # 添加文件到暂存区
git add .           # 添加所有改动到暂存区
git commit -m "message"  # 提交改动
git push           # 推送到远程仓库
git pull           # 拉取远程更新
  1. 分支操作
bash 复制代码
git branch          # 查看分支
git branch <name>   # 创建分支
git checkout <name> # 切换分支
git merge <branch>  # 合并分支
git branch -d <name> # 删除分支
  1. 查看信息
bash 复制代码
git log            # 查看提交历史
git diff           # 查看未暂存的更改
git show           # 查看某次提交的内容
  1. 撤销操作
bash 复制代码
git reset --hard <commit>  # 回退到某个版本
git checkout -- <file>     # 撤销工作区的修改
git reset HEAD <file>      # 撤销暂存区的修改
  1. 临时保存
bash 复制代码
git stash          # 临时保存当前工作
git stash pop      # 恢复最近的临时保存
  1. 标签操作
bash 复制代码
git tag            # 查看标签
git tag <name>     # 创建标签
git push origin <tagname>  # 推送标签到远程

这些是最常用的Git命令,它们能满足日常开发中90%的版本控制需求。建议重点掌握前3类命令,它们是最基础也是使用最频繁的。

相关推荐
i建模1 小时前
安装 `openclaw@2026.3.1` 时遇到了 Git 仓库访问权限问题
git
competes2 小时前
学生需求 交易累计积分,积分兑换奖品
java·大数据·开发语言·人工智能·java-ee
科士威传动2 小时前
微型导轨从精密制造到智能集成的跨越
大数据·运维·科技·机器人·自动化·制造
freewlt3 小时前
git配置文件名称大小写
git
尽兴-3 小时前
Elasticsearch Query DSL 进阶:高频查询范式与实战排坑
大数据·elasticsearch·jenkins·向量检索·去哪嗯检索·模糊匹配·地理空间查询
yang_B6214 小时前
噪声处理方法
大数据·人工智能·算法
无忧智库5 小时前
算力、算法、数据三位一体:构建城市级AI大模型算力池的全景式解构与未来展望(WORD)
大数据·人工智能·算法
拾光向日葵5 小时前
洛阳科技职业学院2026年最新宿舍条件与周边环境全景测评
大数据·人工智能·物联网
小熊熊知识库5 小时前
Git工具使用
git
格图素书6 小时前
大数据在电力行业的应用案例解析-【电力技术】(零)大数据在电力行业的典型落地案例(序)
大数据·单例模式