跳转至

Git常用命令

Git 是一个分布式版本控制系统,用于跟踪项目中的更改并促进团队协作。以下是一些常用的 Git 命令及其简要说明。

配置

  1. 配置用户信息

    git config --global user.name "Your Name"
    git config --global user.email "your.email@example.com"
    

  2. 查看配置

    git config --list
    

创建和克隆仓库

  1. 初始化一个新的 Git 仓库

    git init
    

  2. 克隆一个远程仓库

    git clone https://github.com/user/repo.git
    

基本操作

  1. 查看仓库状态

    git status
    

  2. 添加文件到暂存区

    git add <file>
    git add .
    

  3. 提交更改

    git commit -m "Commit message"
    

  4. 查看提交历史

    git log
    

分支操作

  1. 创建新分支

    git branch <branch-name>
    

  2. 切换分支

    git checkout <branch-name>
    

  3. 创建并切换到新分支

    git checkout -b <branch-name>
    

  4. 合并分支

    git checkout <target-branch>
    git merge <source-branch>
    

  5. 删除分支

    git branch -d <branch-name>
    

远程操作

  1. 添加远程仓库

    git remote add origin https://github.com/user/repo.git
    

  2. 查看远程仓库

    git remote -v
    

  3. 推送到远程仓库

    git push origin <branch-name>
    

  4. 从远程仓库拉取更新

    git pull origin <branch-name>
    

  5. 从远程仓库获取最新变化但不合并

    git fetch origin
    

查看和比较

  1. 查看更改

    git diff
    

  2. 比较分支

    git diff <branch1> <branch2>
    

  3. 查看特定文件的更改历史

    git log -p <file>
    

撤销更改

  1. 撤销对文件的更改(从暂存区移除)

    git reset HEAD <file>
    

  2. 恢复工作目录中某个文件的内容

    git checkout -- <file>
    

  3. 回滚到特定提交

    git revert <commit>
    

其他有用的命令

  1. 查看分支图

    git log --graph --oneline --all
    

  2. 清除未跟踪的文件

    git clean -f
    

总结

这些命令涵盖了 Git 的基本功能和一些常用操作。掌握这些命令可以帮助你更好地管理代码版本、协作开发和维护项目。如果需要更多详细信息或帮助,可以使用 git help <command> 查看特定命令的文档。

评论