# Checkout your feature branch
git checkout -b feature/name-of-your-feature
# Do a soft reset of your changes to develop
# Add all of the changes in your git repo directory, to the new commit that is going to be created
# Commit the same changes with a new commit message
git commit -m "commit message goes here"
# As you re-wrote the git history, we need to force push to update the remote branch
git push --force origin feature/name-of-your-feature