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
A release is done when the branch develop is stable enough to be deployed with new stuff.
To make one, merge the develop branch with master :
# make sure your master branch is updated
git checkout master
git pull origin master
# Then we take the remote branch develop
git checkout develop
git pull origin develop
# Finally we merge it into master
git checkout master
git merge develop
git push origin master