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类命令,它们是最基础也是使用最频繁的。

相关推荐
悠悠子衿1213823 分钟前
Claude+VSCODE配置git导致频繁弹出git bash 的CMO窗口解决方法
ide·git·vscode
ayingmeizi16327 分钟前
智慧养老的数字化转型:AI CRM如何重构全链路增长
大数据·人工智能·重构
老马聊技术1 小时前
HBase单节点环境搭建详细教程
大数据·数据库·hbase
xerthwis1 小时前
Flink:从“微批”到“真流”,数据处理的哲学转向与时代抉择
大数据·flink
QC七哥2 小时前
伪造git提交记录生成点阵字符
git·github
jqpwxt2 小时前
启点创新智慧景区服务平台,智慧景区数字驾驶舱建设
大数据·人工智能
阿里云大数据AI技术2 小时前
Hologres Dynamic Table:高效增量刷新,构建实时统一数仓的核心利器
大数据·人工智能·阿里云·实时数仓·hologres
Familyism2 小时前
ES基础入门
大数据·elasticsearch·搜索引擎
HilariousDog2 小时前
git仓库中克隆文件同时保存line history / 行提交历史的方法介绍
git
TimberWill2 小时前
GitHub Copilot 一键生成中文commit提示语规则设置
git·github