Created
July 10, 2024 16:23
-
-
Save scheffershen/3e0446fd40186bc48187a4d4d51d459e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Fetch all branches | |
git fetch --all | |
#Checkout release branch | |
git checkout release-1.0.0 | |
#List all branches | |
gut branch -a | |
#Merge with squash (Merges the feature-orthographe branch into the current branch, squashing all its commits into a single set of change) | |
git merge --squash feature-orthographe | |
#Stage all changes | |
git add . | |
#Commit changes | |
git commit -m "merge feature-orthographe" | |
#Push to remote | |
git push origin release-1.0.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment