Advertisement
aitormendez

Untitled

Nov 5th, 2015
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.53 KB | None | 0 0
  1. 451:bootstrap aitor$ git st
  2. On branch encurso
  3. Changes not staged for commit:
  4.   (use "git add <file>..." to update what will be committed)
  5.   (use "git checkout -- <file>..." to discard changes in working directory)
  6.  
  7.     modified:   ../_quienes-somos.html
  8.     modified:   ../navbar.html
  9.  
  10. Untracked files:
  11.   (use "git add <file>..." to include in what will be committed)
  12.  
  13.     ../_grupos-trabajo.html
  14.     ../grupos.html
  15.  
  16. no changes added to commit (use "git add" and/or "git commit -a")
  17. 451:bootstrap aitor$ git add ../_quienes-somos.html
  18. 451:bootstrap aitor$ git ci -m "corrección semántica quienes somos"
  19. [encurso d9f18c6] corrección semántica quienes somos
  20.  1 file changed, 16 deletions(-)
  21. 451:bootstrap aitor$ git add --all
  22. 451:bootstrap aitor$ git st
  23. On branch encurso
  24. Changes to be committed:
  25.   (use "git reset HEAD <file>..." to unstage)
  26.  
  27.     new file:   ../_grupos-trabajo.html
  28.     modified:   less-iac/_documento.less
  29.     modified:   less-iac/_quienes-somos.less
  30.     new file:   ../grupos.html
  31.     modified:   ../navbar.html
  32.  
  33. 451:bootstrap aitor$ git ci -m "Grupos de trabajo"
  34. [encurso 82a8145] Grupos de trabajo
  35.  5 files changed, 129 insertions(+), 3 deletions(-)
  36.  create mode 100755 _grupos-trabajo.html
  37.  create mode 100755 grupos.html
  38. 451:bootstrap aitor$ git st
  39. On branch encurso
  40. nothing to commit, working directory clean
  41. 451:bootstrap aitor$ git co master
  42. Switched to branch 'master'
  43. Your branch is up-to-date with 'origin/master'.
  44. 451:bootstrap aitor$ git mg encurso
  45. Updating e7fca5f..82a8145
  46. Fast-forward
  47.  _grupos-trabajo.html                   | 115 +++++++++++++++++++++++++++++++++
  48.  _quienes-somos.html                    |  16 -----
  49.  bootstrap/less-iac/_documento.less     |   2 +-
  50.  bootstrap/less-iac/_quienes-somos.less |   2 +-
  51.  grupos.html                            |  11 ++++
  52.  navbar.html                            |   2 +-
  53.  6 files changed, 129 insertions(+), 19 deletions(-)
  54.  create mode 100755 _grupos-trabajo.html
  55.  create mode 100755 grupos.html
  56. 451:bootstrap aitor$ git st
  57. On branch master
  58. Your branch is ahead of 'origin/master' by 2 commits.
  59.   (use "git push" to publish your local commits)
  60. nothing to commit, working directory clean
  61. 451:bootstrap aitor$ git push
  62. Counting objects: 12, done.
  63. Delta compression using up to 8 threads.
  64. Compressing objects: 100% (12/12), done.
  65. Writing objects: 100% (12/12), 2.02 KiB | 0 bytes/s, done.
  66. Total 12 (delta 8), reused 0 (delta 0)
  67. To git@github.com:aitormendez/iac-web.git
  68.    e7fca5f..82a8145  master -> master
  69. 451:bootstrap aitor$ git co master
  70. D   grupos.html
  71. Already on 'master'
  72. Your branch is up-to-date with 'origin/master'.
  73. 451:bootstrap aitor$ git st
  74. On branch master
  75. Your branch is up-to-date with 'origin/master'.
  76. Changes not staged for commit:
  77.   (use "git add/rm <file>..." to update what will be committed)
  78.   (use "git checkout -- <file>..." to discard changes in working directory)
  79.  
  80.     deleted:    ../grupos.html
  81.  
  82. Untracked files:
  83.   (use "git add <file>..." to include in what will be committed)
  84.  
  85.     ../grupos-trabajo.html
  86.  
  87. no changes added to commit (use "git add" and/or "git commit -a")
  88. 451:bootstrap aitor$ git st
  89. On branch master
  90. Your branch is up-to-date with 'origin/master'.
  91. Changes not staged for commit:
  92.   (use "git add/rm <file>..." to update what will be committed)
  93.   (use "git checkout -- <file>..." to discard changes in working directory)
  94.  
  95.     deleted:    ../grupos.html
  96.     modified:   ../navbar.html
  97.  
  98. Untracked files:
  99.   (use "git add <file>..." to include in what will be committed)
  100.  
  101.     ../grupos-trabajo.html
  102.  
  103. no changes added to commit (use "git add" and/or "git commit -a")
  104. 451:bootstrap aitor$ git add --all
  105. 451:bootstrap aitor$ git ci --amend
  106. [master 97047bb] Grupos de trabajo
  107.  Date: Thu Nov 5 16:13:49 2015 +0100
  108.  5 files changed, 129 insertions(+), 3 deletions(-)
  109.  create mode 100755 _grupos-trabajo.html
  110.  create mode 100755 grupos-trabajo.html
  111. 451:bootstrap aitor$ git co master
  112. Already on 'master'
  113. Your branch and 'origin/master' have diverged,
  114. and have 1 and 1 different commit each, respectively.
  115.   (use "git pull" to merge the remote branch into yours)
  116. 451:bootstrap aitor$ git push
  117. To git@github.com:aitormendez/iac-web.git
  118.  ! [rejected]        master -> master (non-fast-forward)
  119. error: failed to push some refs to 'git@github.com:aitormendez/iac-web.git'
  120. hint: Updates were rejected because the tip of your current branch is behind
  121. hint: its remote counterpart. Integrate the remote changes (e.g.
  122. hint: 'git pull ...') before pushing again.
  123. hint: See the 'Note about fast-forwards' in 'git push --help' for details.
  124. 451:bootstrap aitor$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement