We started this feature with:
git flow feature start example-1
We added a new file here as an example feature.
Now we will commit these changes.
git commit -am "Feature example 1 change"
Now we make another change and commit them as well:
git commit -am "Another feature example 1 change"
We left this feature to go work on another feature (example-2). We completed the Example 2 feature, merging it back to develop and bumping version + tagging.
Now we want to make sure that this feature branch is up to date with the latest in the develop branch, so that we can have example-2 feature as we are developing feature example-1.
git rebase develop
Now that we have imported the latest from develop, we go about continuing work on this feature, making commits along the way.
git commit -am "More changes to example-1"