Guest User

Untitled

a guest
Mar 21st, 2018
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. ▶ git remote add upstream git@github.com:freeCodeCamp/freeCodeCamp.git
  2. ▶ git remote add timdamra git@github.com:timdamra/freeCodeCamp.git # Needed for me
  3. ▶ git remote -v
  4. origin git@github.com:ojongerius/freeCodeCamp.git (fetch)
  5. origin git@github.com:ojongerius/freeCodeCamp.git (push)
  6. timdamra git@github.com:timdamra/freeCodeCamp.git (fetch)
  7. timdamra git@github.com:timdamra/freeCodeCamp.git (push)
  8. upstream git@github.com:freeCodeCamp/freeCodeCamp.git (fetch)
  9. upstream git@github.com:freeCodeCamp/freeCodeCamp.git (push)
  10. ▶ git fetch upstream # Get upstream changes
  11. ▶ git checkout fix/basicjs_objprops_with_vars # Checkout of your branch
  12. Branch 'fix/basicjs_objprops_with_vars' set up to track remote branch 'fix/basicjs_objprops_with_vars' from 'timdamra'.
  13. Switched to a new branch 'fix/basicjs_objprops_with_vars'
  14.  
  15. ~/repos/freeCodeCamp fix/basicjs_objprops_with_vars ✔ 25d
  16. ▶ git rebase upstream/staging # Finally, rebase!
  17. First, rewinding head to replay your work on top of it...
  18. Applying: fix(challenges): Created a NotFound react component, added a redux
  19. Using index info to reconstruct a base tree...
  20. M common/app/NotFound/Not-Found.jsx
  21. M common/app/routes/Challenges/Show.jsx
  22. M common/app/routes/Challenges/redux/index.js
  23. M common/app/routes/Challenges/views/quiz/Quiz.jsx
  24. M common/app/utils/challengeTypes.js
  25. M seed/challenges/01-responsive-web-design/applied-visual-design.json
  26. M seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json
  27. Falling back to patching base and 3-way merge...
  28. Auto-merging seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json
  29. Auto-merging common/app/NotFound/Not-Found.jsx
  30. CONFLICT (content): Merge conflict in common/app/NotFound/Not-Found.jsx
  31. error: Failed to merge in the changes.
  32. Patch failed at 0001 fix(challenges): Created a NotFound react component, added a redux
  33. The copy of the patch that failed is found in: .git/rebase-apply/patch
  34.  
  35. Resolve all conflicts manually, mark them as resolved with
  36. "git add/rm <conflicted_files>", then run "git rebase --continue".
  37. You can instead skip this commit: run "git rebase --skip".
  38. To abort and get back to the state before "git rebase", run "git rebase --abort".
  39. # Time for you to manually fix the merge conflict in common/app/NotFound/Not-Found.jsx
  40. # When you are done:
  41. git add common/app/NotFound/Not-Found.jsx
  42. git rebase --continue
  43. git push
Add Comment
Please, Sign In to add comment