Git常用命令
git 常用命令
基本命令
git init
初始化git add
把文件添加到仓库中git commit
把文件提交到仓库中-m
添加本次体提交说明
git status
查看当前仓库状态git diff
查看文件修改内容git log
查看提交日志git reset --hard commit_id
版本回退git reflog
查看历史命令git remote add origin
添加远程仓库
git branch 创建分支
1 | git branch branchname #创建新分支 |
git checkout
1 | git checkout bugFix #切换到 bugFix 分支上 |
git fetch
1 | git fetch |
git merge
1 | git merge |
git rebase
1 | git rebase |
git pull
1 | 强制远程拉取并覆盖本地 |
git push
1 | git push -f origin master #强制推送 |