Guest User

Untitled

a guest
Sep 13th, 2018
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.24 KB | None | 0 0
  1. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  2. $ git push -u origin master
  3. fatal: HttpRequestException encountered.
  4. An error occurred while sending the request.
  5. Username for 'https://github.com': Muaz.Al.Jarhi@Gmail.com
  6. To https://github.com/SamuraiHub/Java.git
  7. ! [rejected] master -> master (fetch first)
  8. error: failed to push some refs to 'https://github.com/SamuraiHub/Java.git'
  9. hint: Updates were rejected because the remote contains work that you do
  10. hint: not have locally. This is usually caused by another repository pushing
  11. hint: to the same ref. You may want to first integrate the remote changes
  12. hint: (e.g., 'git pull ...') before pushing again.
  13. hint: See the 'Note about fast-forwards' in 'git push --help' for details.
  14.  
  15. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  16. $ ^C
  17.  
  18. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  19. $ git fetch origin master
  20. warning: no common commits
  21. remote: Counting objects: 3, done.
  22. remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
  23. Unpacking objects: 100% (3/3), done.
  24. From https://github.com/SamuraiHub/Java
  25. * branch master -> FETCH_HEAD
  26. * [new branch] master -> origin/master
  27. Auto packing the repository in background for optimum performance.
  28. See "git help gc" for manual housekeeping.
  29. Counting objects: 6350, done.
  30. Delta compression using up to 8 threads.
  31. Compressing objects: 100% (6164/6164), done.
  32. Writing objects: 100% (6350/6350), done.
  33. Total 6350 (delta 534), reused 0 (delta 0)
  34. Removing duplicate objects: 100% (256/256), done.
  35.  
  36. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  37. $ git merge origin master
  38. merge: origin - not something we can merge
  39.  
  40. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  41. $ git push -u origin master
  42. fatal: HttpRequestException encountered.
  43. An error occurred while sending the request.
  44. Username for 'https://github.com': Muaz.Al.Jarhi@Gmail.com
  45. To https://github.com/SamuraiHub/Java.git
  46. ! [rejected] master -> master (non-fast-forward)
  47. error: failed to push some refs to 'https://github.com/SamuraiHub/Java.git'
  48. hint: Updates were rejected because the tip of your current branch is behind
  49. hint: its remote counterpart. Integrate the remote changes (e.g.
  50. hint: 'git pull ...') before pushing again.
  51. hint: See the 'Note about fast-forwards' in 'git push --help' for details.
  52.  
  53. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  54. $ git pull
  55. There is no tracking information for the current branch.
  56. Please specify which branch you want to merge with.
  57. See git-pull(1) for details.
  58.  
  59. git pull <remote> <branch>
  60.  
  61. If you wish to set tracking information for this branch you can do so with:
  62.  
  63. git branch --set-upstream-to=origin/<branch> master
  64.  
  65.  
  66. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  67. $ git checkout master
  68. Already on 'master'
  69.  
  70. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  71. $ git pull
  72. There is no tracking information for the current branch.
  73. Please specify which branch you want to merge with.
  74. See git-pull(1) for details.
  75.  
  76. git pull <remote> <branch>
  77.  
  78. If you wish to set tracking information for this branch you can do so with:
  79.  
  80. git branch --set-upstream-to=origin/<branch> master
  81.  
  82.  
  83. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  84. $ git push -u origin master
  85. fatal: HttpRequestException encountered.
  86. An error occurred while sending the request.
  87. Username for 'https://github.com': Muaz.Al.Jarhi@Gmail.com
  88. To https://github.com/SamuraiHub/Java.git
  89. ! [rejected] master -> master (non-fast-forward)
  90. error: failed to push some refs to 'https://github.com/SamuraiHub/Java.git'
  91. hint: Updates were rejected because the tip of your current branch is behind
  92. hint: its remote counterpart. Integrate the remote changes (e.g.
  93. hint: 'git pull ...') before pushing again.
  94. hint: See the 'Note about fast-forwards' in 'git push --help' for details.
  95.  
  96. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  97. $ git pull --rebase
  98. There is no tracking information for the current branch.
  99. Please specify which branch you want to rebase against.
  100. See git-pull(1) for details.
  101.  
  102. git pull <remote> <branch>
  103.  
  104. If you wish to set tracking information for this branch you can do so with:
  105.  
  106. git branch --set-upstream-to=origin/<branch> master
  107.  
  108.  
  109. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  110. $ git fetch origin master
  111. From https://github.com/SamuraiHub/Java
  112. * branch master -> FETCH_HEAD
  113.  
  114. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  115. $ git merge origin master
  116. merge: origin - not something we can merge
  117.  
  118. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  119. $ git merge master
  120. Already up-to-date.
  121.  
  122. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  123. $ git push -u origin master
  124. fatal: HttpRequestException encountered.
  125. An error occurred while sending the request.
  126. Username for 'https://github.com': Muaz.Al.Jarhi@Gmail.com
  127. To https://github.com/SamuraiHub/Java.git
  128. ! [rejected] master -> master (non-fast-forward)
  129. error: failed to push some refs to 'https://github.com/SamuraiHub/Java.git'
  130. hint: Updates were rejected because the tip of your current branch is behind
  131. hint: its remote counterpart. Integrate the remote changes (e.g.
  132. hint: 'git pull ...') before pushing again.
  133. hint: See the 'Note about fast-forwards' in 'git push --help' for details.
  134.  
  135. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  136. $ ^C
  137.  
  138. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  139. $ git pull --rebase
  140. There is no tracking information for the current branch.
  141. Please specify which branch you want to rebase against.
  142. See git-pull(1) for details.
  143.  
  144. git pull <remote> <branch>
  145.  
  146. If you wish to set tracking information for this branch you can do so with:
  147.  
  148. git branch --set-upstream-to=origin/<branch> master
  149.  
  150.  
  151. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  152. $ git pull
  153. There is no tracking information for the current branch.
  154. Please specify which branch you want to merge with.
  155. See git-pull(1) for details.
  156.  
  157. git pull <remote> <branch>
  158.  
  159. If you wish to set tracking information for this branch you can do so with:
  160.  
  161. git branch --set-upstream-to=origin/<branch> master
  162.  
  163.  
  164. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master)
  165. $ git pull origin master --rebase
  166. From https://github.com/SamuraiHub/Java
  167. * branch master -> FETCH_HEAD
  168. First, rewinding head to replay your work on top of it...
  169.  
  170.  
  171.  
  172. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java ((ec222e4...)|AM/REBASE)
  173. $
  174.  
  175. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java ((ec222e4...)|AM/REBASE)
  176. $ git push -u origin master
  177. fatal: HttpRequestException encountered.
  178. An error occurred while sending the request.
  179. Username for 'https://github.com': Muaz.Al.Jarhi@Gmail.com
  180. To https://github.com/SamuraiHub/Java.git
  181. ! [rejected] master -> master (non-fast-forward)
  182. error: failed to push some refs to 'https://github.com/SamuraiHub/Java.git'
  183. hint: Updates were rejected because a pushed branch tip is behind its remote
  184. hint: counterpart. Check out this branch and integrate the remote changes
  185. hint: (e.g. 'git pull ...') before pushing again.
  186. hint: See the 'Note about fast-forwards' in 'git push --help' for details.
  187.  
  188. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java ((ec222e4...)|AM/REBASE)
  189. $ git checkout master
  190. Checking out files: 100% (10551/10551), done.
  191. Previous HEAD position was ec222e4... Initial commit
  192. Switched to branch 'master'
  193.  
  194. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master|AM/REBASE)
  195. $ git push -u origin master
  196. fatal: HttpRequestException encountered.
  197. An error occurred while sending the request.
  198. Username for 'https://github.com': Muaz.Al.Jarhi@Gmail.com
  199. To https://github.com/SamuraiHub/Java.git
  200. ! [rejected] master -> master (non-fast-forward)
  201. error: failed to push some refs to 'https://github.com/SamuraiHub/Java.git'
  202. hint: Updates were rejected because the tip of your current branch is behind
  203. hint: its remote counterpart. Integrate the remote changes (e.g.
  204. hint: 'git pull ...') before pushing again.
  205. hint: See the 'Note about fast-forwards' in 'git push --help' for details.
  206.  
  207. Muaz Aljarhi@MuazAljarhi-PC MINGW64 /f/muaz/Programming/Java (master|AM/REBASE)
  208. $
Add Comment
Please, Sign In to add comment