2024年11月09日 建站教程
git切换分支
# 切换到已有的分支 git checkout branch_name # 创建并切换到新分支 git checkout -b new_branch_name
git回到历史提交状态
# 回到某次提交状态 git checkout commit_id # 回到最近一次提交状态 git checkout HEAD
本文链接:http://so.lmcjl.com/news/17363/