@Chiang
2020-04-11T14:45:10.000000Z
字数 327
阅读 553
Git
2020-04
git checkout -b iss53
# 它是下面两条命令的缩写
git branch iss53
git checkout iss53
你继续在 #53 问题上工作,并且做了一些提交。 在此过程中,iss53 分支在不断的向前推进,因为你已经检出到该分支 (也就是说,你的 HEAD 指针指向了 iss53 分支)
vim index.html
git commit -a -m 'added a new footer [issue 53]'
git branch -d hotfix
git merge iss53
git status