Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. git checkout -b new-branch
  2. git branch
  3. develop
  4. *new-branch
  5. git commit -am 'new message'
  6. git push -u origin new-branch
  7. git branch -a
  8. [here the new branch does not show]
  9. git checkout origin/new-branch
  10. error: pathspec 'origin/new-branch' did not match any file(s) known to git.
  11.  
  12. git remote update
  13.  
  14. git status
  15.  
  16. git add .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement