Last active
August 29, 2015 14:25
-
-
Save ogregoire/00ec032fa0d8008b0b09 to your computer and use it in GitHub Desktop.
Using git
This file contains 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
This file contains 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
# Switch to the master branch and make sure you are up to date. | |
git checkout master | |
git fetch # this may be necessary (depending on your git config) to receive updates on origin/master | |
git pull | |
# Merge the feature branch into the master branch. | |
git merge feature_branch | |
# Reset the master branch to origin's state. | |
git reset origin/master | |
# Git now considers all changes as unstaged changes. | |
# We can add these changes as one commit. | |
# Adding . will also add untracked files. | |
git add --all | |
git commit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment