📌  相关文章
📜  git 更改提交历史 - Shell-Bash 代码示例

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

代码示例2
# Checkout a given commit.
# Doing so will result in a `detached HEAD` which mean that the `HEAD`
# is not pointing to the latest so you will need to checkout branch
# in order to be able to update the code.
git checkout 

# Create a new branch forked to the given commit
git checkout -b