when someone abandons you,it is him that gets loss because he lost someone who truly loves him but you just lost one who doesn’t love you.
在写 ftp 下载服务端版本发布 zip 包的时候,有些新的功能想添加,但又怕影响原来 py 脚本的稳定性,所以就想起了 git 的分支功能。
分支的新建和切换
1 | $ git checkout -b iss53 |
分支的合并
1 | $ git checkout master |
分支的删除
1 | $ git branch -d iss53 # 删除已经合并的分支 |
分支的查看
1 | $ git branch # 查看所有分支 |
be yourself, everyone else is already taken.