Skip to content
liyingzh edited this page Jul 31, 2015 · 1 revision

基础篇

  1. 克隆远程库到本地 git clone
  2. 添加远程库 git remote add XXX https://github.com/XXX/XXX.git
  3. 查看远程库 git remote -v
  4. 与远程库XXX同步 git pull XXX
  5. 查看提交记录 git log
  6. 提交修改的XXX文件到git git add XXX git commit
  7. 推送master分支到远程库XXX git push XXX master

提升篇

  1. 新建分支XXX git branch XXX
  2. 切换到分支XXX git checkout XXX
  3. 撤销修改 git reset HEAD --hard git reset -- <filename>
  4. 修改最近一次提交 git commit --amend

更多内容后续补充

Clone this wiki locally