Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.78 KB | None | 0 0
  1. Cheese@christiansmbp2 /A/M/h/processwire> git checkout .
  2. Cheese@christiansmbp2 /A/M/h/processwire> git pull
  3. There is no tracking information for the current branch.
  4. Please specify which branch you want to merge with.
  5. See git-pull(1) for details
  6.  
  7.     git pull <remote> <branch>
  8.  
  9. If you wish to set tracking information for this branch you can do so with:
  10.  
  11.     git branch --set-upstream-to=origin/<branch> master
  12.  
  13. Cheese@christiansmbp2 /A/M/h/processwire> git status
  14. On branch master
  15. Untracked files:
  16.   (use "git add <file>..." to include in what will be committed)
  17.  
  18.     htaccess.txt
  19.     site/assets/files/1012/
  20.     site/assets/logs/errors.txt
  21.     site/assets/sessions/sess_d70a1e0894a23ebc735d6c219e189d57
  22.     site/templates/css/
  23.     site/templates/includes/
  24.     site/templates/js/
  25.  
  26. nothing added to commit but untracked files present (use "git add" to track)
  27. Cheese@christiansmbp2 /A/M/h/processwire> git pull
  28. There is no tracking information for the current branch.
  29. Please specify which branch you want to merge with.
  30. See git-pull(1) for details
  31.  
  32.     git pull <remote> <branch>
  33.  
  34. If you wish to set tracking information for this branch you can do so with:
  35.  
  36.     git branch --set-upstream-to=origin/<branch> master
  37.  
  38. Cheese@christiansmbp2 /A/M/h/processwire> git pull origin master
  39. From github.com:Plsr/processwire
  40.  * branch            master     -> FETCH_HEAD
  41. Already up-to-date.
  42. Cheese@christiansmbp2 /A/M/h/processwire> git fetch origin
  43. Cheese@christiansmbp2 /A/M/h/processwire> git checkout .
  44. Cheese@christiansmbp2 /A/M/h/processwire> git reset --hard origin master
  45. fatal: ambiguous argument 'origin': unknown revision or path not in the working tree.
  46. Use '--' to separate paths from revisions, like this:
  47. 'git <command> [<revision>...] -- [<file>...]'
  48. Cheese@christiansmbp2 /A/M/h/processwire> git reset --hard
  49. HEAD is now at 3561f31 Initial commit
  50. Cheese@christiansmbp2 /A/M/h/processwire> git pull
  51. There is no tracking information for the current branch.
  52. Please specify which branch you want to merge with.
  53. See git-pull(1) for details
  54.  
  55.     git pull <remote> <branch>
  56.  
  57. If you wish to set tracking information for this branch you can do so with:
  58.  
  59.     git branch --set-upstream-to=origin/<branch> master
  60.  
  61. Cheese@christiansmbp2 /A/M/h/processwire> git pull origin master
  62. From github.com:Plsr/processwire
  63.  * branch            master     -> FETCH_HEAD
  64. Already up-to-date.
  65. Cheese@christiansmbp2 /A/M/h/processwire> git sttus
  66. git: 'sttus' is not a git command. See 'git --help'.
  67.  
  68. Did you mean this?
  69.     status
  70. Cheese@christiansmbp2 /A/M/h/processwire> git status
  71. On branch master
  72. Untracked files:
  73.   (use "git add <file>..." to include in what will be committed)
  74.  
  75.     htaccess.txt
  76.     site/assets/files/1012/
  77.     site/assets/logs/errors.txt
  78.     site/assets/sessions/sess_d70a1e0894a23ebc735d6c219e189d57
  79.     site/templates/css/
  80.     site/templates/includes/
  81.     site/templates/js/
  82.  
  83. nothing added to commit but untracked files present (use "git add" to track)
  84. Cheese@christiansmbp2 /A/M/h/processwire> git fetch origin
  85. Cheese@christiansmbp2 /A/M/h/processwire> git reste --hard origin/master
  86. git: 'reste' is not a git command. See 'git --help'.
  87.  
  88. Did you mean this?
  89.     reset
  90. Cheese@christiansmbp2 /A/M/h/processwire> git reset --hard origin/master
  91. HEAD is now at 3561f31 Initial commit
  92. Cheese@christiansmbp2 /A/M/h/processwire> git pull origin master
  93. From github.com:Plsr/processwire
  94.  * branch            master     -> FETCH_HEAD
  95. Already up-to-date.
  96. Cheese@christiansmbp2 /A/M/h/processwire> git fetch origin
  97. Cheese@christiansmbp2 /A/M/h/processwire> git reset --hard origin/master
  98. HEAD is now at 3561f31 Initial commit
  99. Cheese@christiansmbp2 /A/M/h/processwire> git pull origin master
  100. From github.com:Plsr/processwire
  101.  * branch            master     -> FETCH_HEAD
  102. Already up-to-date.
  103. Cheese@christiansmbp2 /A/M/h/processwire>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement