Skip to main content

git 版本控制管理

风不止About 2 mingitversion management

git版本管理

git版本管理常用命令

基础配置命令

# 配置用户信息
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"

# 查看配置信息
git config --list

仓库初始化和克隆

# 初始化新的Git仓库
git init

# 克隆远程仓库
git clone <repository-url>

基本操作命令

# 查看仓库状态
git status

# 将文件添加到暂存区
git add <file-name>    # 添加指定文件
git add .              # 添加所有更改

# 提交更改
git commit -m "commit message"

# 查看提交历史
git log
git log --oneline      # 简洁模式

分支操作

# 查看分支
git branch            # 查看本地分支
git branch -r         # 查看远程分支
git branch -a         # 查看所有分支

# 创建和切换分支
git branch <branch-name>           # 创建新分支
git checkout <branch-name>         # 切换分支
git checkout -b <branch-name>      # 创建并切换到新分支

# 合并分支
git merge <branch-name>            # 合并指定分支到当前分支

远程仓库操作

# 添加远程仓库
git remote add origin <repository-url>

# 推送到远程仓库
git push origin <branch-name>
git push -u origin <branch-name>   # 首次推送并设置上游分支

# 从远程仓库拉取更新
git fetch                          # 获取远程仓库更新
git pull                           # 拉取并合并远程更新

撤销和回退操作

# 撤销工作区修改
git checkout -- <file-name>

# 撤销暂存区的修改
git reset HEAD <file-name>

# 回退到指定版本
git reset --hard <commit-id>

标签管理

# 创建标签
git tag <tag-name>                 # 在当前commit创建标签
git tag -a <tag-name> -m "message" # 创建带注释的标签

# 查看标签
git tag                           # 查看所有标签
git show <tag-name>               # 查看标签详细信息

常用工作流程

  1. 更新本地仓库:
git pull origin main
  1. 创建功能分支:
git checkout -b feature/new-feature
  1. 提交更改:
git add .
git commit -m "feat: add new feature"
  1. 推送到远程:
git push origin feature/new-feature

实用技巧

# 暂存当前工作
git stash
git stash pop                     # 恢复暂存的工作

# 查看文件变更
git diff                         # 查看未暂存的更改
git diff --staged               # 查看已暂存的更改

# 修改最后一次提交
git commit --amend              # 修改最后一次提交信息

注意事项

  1. 经常进行代码提交,保持提交粒度适中
  2. 提交信息要清晰明了,建议使用规范的提交信息格式
  3. 重要操作前先创建分支,避免直接在主分支上开发
  4. 及时处理冲突,保持代码库整洁
  5. 定期进行代码推送和备份