Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge Issue #23

Open
jessexu20 opened this issue Mar 30, 2015 · 2 comments
Open

Merge Issue #23

jessexu20 opened this issue Mar 30, 2015 · 2 comments

Comments

@jessexu20
Copy link
Member

Before you make a push to your own branch! Make sure you have the most updated version.
You should do as following..

  1. commit all your changes in your own branch, but do not push into the origin.
    git add -A
    git commit -m "message"
  1. check out into master and pull the updated version

    git checkout master
    git pull
    
  2. check into your own branch and merge the master

    git checkout [branchName]
    git merge master
    
  3. fix the conflicts files by find each file and decide which you want. Check the HEAD AND MASTER

  4. commit the fix result and push into your own branch

    git add -A
    git commit -m "fix conflict" 
    git push origin [branchName]
    
@jessexu20
Copy link
Member Author

@OliviaHY @Expo0911

@jessexu20
Copy link
Member Author

If you haven't done anything yet.
just do the step 2.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant