Git 是一个很好用的工具,相信不用我说大家也承认。以下记录一些会用到的命令行:
- 创建 Git 仓库:git init
- 克隆 Git 仓库:git clone /path/to/repository 或 git clone username@host:/path/to/repository
- 克隆某一分支:git clone -b <branch> <remote git>
- 将改动添加到缓存区:git add <filename> 或 git add *
- Git commit: git commit -m “Commit Message”
- 设置远端:git remote add origin <server>
- 推送本地改动至远端:git push origin <branch>
- 强制推送至远端:git push -f origin <branch
- 添加分支:git checkout -b <branch name>
- 切换回主分支:git checkout master
- 删除分支:git branch -d feature_x