git merge

把一个分支test1 合并到 另一个分支 test2 上

  1. git checkout test2
  2. git merge test1

    .gitignore

    告诉Git哪些文件不需要添加到版本管理中

    git reset

    ``` git reset —hard HEAD^ 回退到上个版本 git reset —hard commit_id 退到/进到 指定commit_id

git push -f 强制推到远程库 ```