Advertisement
Guest User

Untitled

a guest
Oct 26th, 2017
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. *A new feature is going to be added*
  2. git checkout -b newfeature (I am now in (newfeature) and not (master))
  3. git push origin newfeature
  4. *Adding the new feature and saves the file*
  5. git add --all
  6. git commit -m "Message"
  7. git push origin newfeature
  8. git checkout master (i am now in (master))
  9. git merge newfeature (earlier my texteditor opened to i could write a merge-message, now nothing opens)
  10. git push origin master
  11. *ALL earlier changes seems to be made in master*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement