Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For a long lived branch where you want to see the merge history with develop:

 

Code Block
THIS DOESN'T WORK: git flow feature finish --no-ff GEODE-nn

 

Without git flow:
git checkout develop
git pull
git merge --no-ff feature/GEODE-nn
git branch -D feature/GEODE-nn
git push --delete origin feature/GEODE-nn

...