我是新手GIT
和GIT-Flow
。[在我的 python-django 项目中]
我做了什么 :
git flow feature start new_feature
# perform some commits on the feature/new_feature branch
git push origin feature/new_feature
git flow feature finish new_feature
# I suppose that merges feature/new_feature to develop and deletes feature/new_feature
git push origin develop # Pushes the new changes to remote
问题:
- 我的本地机器上似乎删除了 feature/new_feature 分支。
- 但是在
github
[ My remote named origin ] 上,我可以看到分支功能/new_feature。 - 我很困惑,它不应该显示已删除的分支。
- 我环顾四周寻找解决方案 - 但他们说你应该在远程手动删除它们,这似乎不适合抽象
git flow
那么,你们每次使用时都必须从所有遥控器中删除所有功能分支git-flow
吗?
难道我做错了什么 ?