📜  恢复或重置 git - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:35.540000             🧑  作者: Mango

代码示例1
git reset    Commit-level    Discard commits in a private branch or throw away uncommited changes
git reset    File-level    Unstage a file
git checkout    Commit-level    Switch between branches or inspect old snapshots
git checkout    File-level    Discard changes in the working directory
git revert    Commit-level    Undo commits in a public branch
git revert    File-level    (N/A)