Last active
January 3, 2016 04:09
-
-
Save erlinis/8407424 to your computer and use it in GitHub Desktop.
Mix changes from to branch to master
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
Using a new branch to merge changes | |
========= | |
Step 1: | |
# Create and swicth to hthe new branch | |
➜ skynet git:(master) git checkout -b ricardo_simple_form | |
Step 2: | |
# Copy master's changes into the new branch ('Ricardo Simple Form') | |
➜ skynet git:(ricardo_simple_form) git rebase master | |
# If there occurs some conflict, go to the file | |
➜ skynet git:(d87c554) ✗ git rebase --continue | |
Step 3: | |
# Una vez el branch esta mezclado y los conflictos fueron solucionados, | |
# copiar todo los cambios de este branch en master, para que quede actualizado. | |
➜ skynet git:(ricardo_simple_form) gco master | |
➜ skynet git:(master) git rebase ricardo_simple_form | |
==== | |
# Be sure you are on master | |
➜ skynet git:(tool_assignment) gco master | |
# Get all the possible changes from origin in master | |
➜ skynet git:(master) git pull origin master | |
# Copy the branch 'tool_assignment' in master | |
$ git rebase master tool_assignment |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment