如何利用 Git 辅助本地项目开发

到 B 站观看视频

[user]
  name = Peter Wang
  email = happypeter1983@gmail.com
[core]
  editor = vim
[alias]
  ci = commit -a -v
  co = checkout
  st = status
  br = branch
  throw = reset --hard HEAD
  throwh = reset --hard HEAD^
[color]
  ui = true
[push]
  default = current
git throw = git reset --hard HEAD
git throwh = git reset --hard HEAD^
git checkout filename
git rebase -i HEAD~~~