Advertisement
lamiastella

git pull -f

Mar 1st, 2017
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. mona@pascal:~/computer_vision/instagram/instagram$ git pull -f
  2. remote: Counting objects: 2, done.
  3. remote: Total 2 (delta 0), reused 0 (delta 0), pack-reused 0
  4. Unpacking objects: 100% (2/2), done.
  5. From github.com:monajalal/instagram-scraper
  6. 8aa79db..096f325 master -> origin/master
  7. You asked to pull from the remote '-f', but did not specify
  8. a branch. Because this is not the default configured remote
  9. for your current branch, you must specify a branch on the command line.
  10. mona@pascal:~/computer_vision/instagram/instagram$ git push -u origin master
  11. To git@github.com:monajalal/instagram-scraper.git
  12. ! [rejected] master -> master (non-fast-forward)
  13. error: failed to push some refs to 'git@github.com:monajalal/instagram-scraper.git'
  14. hint: Updates were rejected because the tip of your current branch is behind
  15. hint: its remote counterpart. Integrate the remote changes (e.g.
  16. hint: 'git pull ...') before pushing again.
  17. hint: See the 'Note about fast-forwards' in 'git push --help' for details.
  18. mona@pascal:~/computer_vision/instagram/instagram$ git pull -f master
  19. fatal: 'master' does not appear to be a git repository
  20. fatal: Could not read from remote repository.
  21.  
  22. Please make sure you have the correct access rights
  23. and the repository exists.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement