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

相关推荐
k***81721 小时前
使用Canal将MySQL数据同步到ES(Linux)
linux·mysql·elasticsearch
8K超高清1 小时前
超高清科技引爆中国电影向“新”力
大数据·运维·服务器·网络·人工智能·科技
弘毅 失败的 mian1 小时前
Git 基本操作
大数据·经验分享·笔记·git·elasticsearch
路边草随风1 小时前
flink实现写orc对数据进行分目录(分区表)写入
java·大数据·flink
Jerry.张蒙2 小时前
SAP传输请求流程:从开发到生产的安全流转
大数据·网络·人工智能·学习·职场和发展·区块链·运维开发
risc1234562 小时前
【Elasticsearch】迁出节点”≠“恢复源节点
大数据·elasticsearch·搜索引擎
乐迪信息2 小时前
乐迪信息:皮带区域安全值守:AI摄像机杜绝煤矿人员闯入
大数据·运维·人工智能·安全·计算机视觉
渣渣盟2 小时前
Flink数据流高效写入HBase实战
大数据·flink·scala·apache·hbase
路边草随风2 小时前
flink实现变更算子checkpoint断点续传依然生效
大数据·人工智能·flink