Git命令常规操作
Git是一个开源的分布式版本控制系统,可以有效、高效地处理从小型到大型项目的版本管理。以下是一些常见的Git操作命令:
- 初始化本地仓库:
git init
- 克隆远程仓库:
git clone [url]
- 查看当前仓库状态:
git status
- 添加文件到暂存区:
git add [file]
# 或者添加所有文件
git add .
- 提交暂存区的变化到本地仓库:
git commit -m "commit message"
- 将本地的改动推送到远程仓库:
git push
- 获取远程仓库的最新内容:
git pull
- 创建分支:
git branch [branch-name]
- 切换分支:
git checkout [branch-name]
- 合并分支:
git merge [branch]
- 查看提交历史:
git log
- 撤销更改:
# 撤销工作区的更改
git checkout -- [file]
# 撤销暂存区的更改
git reset HEAD [file]
# 撤销已经提交的更改
git revert [commit]
- 删除文件:
git rm [file]
- 设置Git的用户名和邮箱:
git config --global user.name "[name]"
git config --global user.email "[email address]"
- 查看分支图:
git log --graph
- 创建标签:
git tag [tagname]
- 推送标签到远程:
git push origin [tagname]
- 检出标签:
git checkout [tagname]
- 拉取远程标签:
git fetch --tags
- 设置远程仓库地址:
git remote add origin [url]
- 查看远程仓库:
git remote -v
以上是一些常用的Git命令,可以根据需要选择合适的命令进行操作。
评论已关闭