【Git】常用的Git操作集合
Git是一个开源的分布式版本控制系统,可以有效、高效地处理从小型到大型项目的版本管理。以下是一些常见的Git操作:
- 初始化本地仓库:
git init
- 克隆远程仓库:
git clone <repository_url>
- 查看当前仓库状态:
git status
- 添加文件到暂存区:
git add <file_name>
# 或者添加所有文件
git add .
- 提交暂存区的变更到本地仓库:
git commit -m "commit message"
- 将本地仓库的变更推送到远程仓库:
git push
- 拉取远程仓库的最新变更到本地:
git pull
- 查看提交历史:
git log
- 创建分支:
git branch <branch_name>
- 切换分支:
git checkout <branch_name>
- 创建并切换到新分支:
git checkout -b <new_branch_name>
- 合并分支:
git merge <branch_name>
- 删除分支:
git branch -d <branch_name>
- 撤销变更(工作区):
git checkout -- <file_name>
- 撤销变更(暂存区):
git reset <file_name>
- 撤销提交(更新远程仓库):
git push -f
- 设置Git用户信息:
git config --global user.name "Your Name"
git config --global user.email "your_email@example.com"
- 查看远程仓库地址:
git remote -v
- 添加远程仓库地址:
git remote add origin <repository_url>
- 删除远程仓库地址:
git remote remove origin
这些是Git的基本操作,每个操作都有其特定的用途和使用场景。在实际开发中,可以根据需要选择合适的Git命令来管理代码。
评论已关闭