I have master branch of the project. Then I want to add a new feature so I create a new branch called "new_feature", base on master branch. In new_feature branch, everything works fine and I want to delete some files that are no longer useful. But when I switch back to master branch and merge with new_feature branch, these deleted files still exist. Here is my question: what I have to do to make master branch is exactly the same as the new_feature branch so I can delete new_feature branch. Thanks in advance!
|
Sounds like you forgot to check in the delete. In Eclipse, switch to the feature branch and open the Git Staging view to see changes that are still pending. File deletes get staged automatically, but not committed. Required sequence is Delete - commit - push - checkout other branch - merge - commit - push |
|||
|
|
You need merge The steps are,
|
|||
|
|
|
@Duc Le: You must merge your new_feature branch to your master branch to get all modified file in new_feature branch into master branch. Maybe something like this you can follow :
|
|||||
|