Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- *A new feature is going to be added*
- git checkout -b newfeature (I am now in (newfeature) and not (master))
- git push origin newfeature
- *Adding the new feature and saves the file*
- git add --all
- git commit -m "Message"
- git push origin newfeature
- git checkout master (i am now in (master))
- git merge newfeature (earlier my texteditor opened to i could write a merge-message, now nothing opens)
- git push origin master
- *ALL earlier changes seems to be made in master*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement