Git分支参与者的常用操作 CJayhe 技术分享 795 views ## 查看分支 ```shell git branch -a ``` ## 切换分支 ```shell git checkout beta git checkout develop ``` ## 合并分支 ```shell git merge --no-ff develop git merge --no-ff beta ``` ## 强制更新分支到本地 ```shell git fetch origin master git reset --hard origin/master ``` ## 清除git缓存提交 ```shell git rm -r --cached . git add . git commit -m 'update .gitignore' git push ``` 帮助PHPZlc项目! 与任何开源项目一样, 贡献代码 或 文档 是最常见的帮助方式, 但我们也有广泛的 赞助机会。 0 赞赏 加入技术群 评论 去登录