MetOffice / git-working-practices Public Notifications Fork 3 Star 1 Code Issues 3 Pull requests Actions Projects Security Insights New issue Add info on how to check repo permissions #66 Merged astroDi
git checkout [--] <paths> 如果填写commit id(既可以是commit hash也可以是分支名称还可以说tag,其本质上都是commit hash),则会从指定commit hash中检出该文件。用于恢复某一个文件到某一个提交状态。 用法2: git checkout -b <new_branch> [<start_point>] 该命令是文章开头部分所说的checkout常见用法的...