You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since release tags only happen on the master branch, running git describe on the develop branch yields:
fatal: No tags can describe 'afc0a77f45f380b077cedabcd16adeb8c5bbc401'.
Try --always, or create some tags.
To fix this, Instead of running git merge release/xxx on the develop branch, I run git merge master after the release branch has been merged in to master and deleted.
This allows me to run git describe on my develop branch and get:
v5-1-gc6acce1
Which is more useful during development if I want to package development releases for testing.
So the order is:
create release branch
bump version, etc.
merge release/xxx branch to master
merge master branch to develop
The text was updated successfully, but these errors were encountered:
Since release tags only happen on the
master
branch, runninggit describe
on thedevelop
branch yields:To fix this, Instead of running
git merge release/xxx
on thedevelop
branch, I rungit merge master
after the release branch has been merged in to master and deleted.This allows me to run
git describe
on mydevelop
branch and get:Which is more useful during development if I want to package development releases for testing.
So the order is:
release/xxx
branch tomaster
master
branch todevelop
The text was updated successfully, but these errors were encountered: