git init | 初始化本地仓库 | git init |
git clone | 克隆远程仓库到本地 | git clone <repository-url> |
git add | 将文件添加到暂存区 | git add <file> |
git commit | 提交暂存区的文件到本地仓库 | git commit -m 'Commit message' |
git push | 将本地仓库的变更推送到远程仓库 | git push origin <branch-name> |
git pull | 从远程仓库拉取变更到本地仓库 | git pull origin <branch-name> |
git checkout | 切换分支或恢复文件 | git checkout <branch-name> |
git merge | 合并指定分支到当前分支 | git merge <branch-name> |
git branch | 列出本地分支或创建新分支 | git branch <branch-name> |
git status | 查看工作区和暂存区的状态 | git status |
git log | 查看提交日志 | git log |
git remote | 管理远程仓库 | git remote -v |
git config | 配置 Git | git config --global user.name 'Your Name' |