Last active
October 17, 2015 01:52
-
-
Save felipecabargas/28245c38f42b95eb9108 to your computer and use it in GitHub Desktop.
Commands used during git hangout on 10/16/15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10048 : 1445042157:0;hangout | |
10049 : 1445042162:0;git init | |
10050 : 1445042170:0;ls -la | |
10051 : 1445042181:0;.git | |
10052 : 1445042182:0;ls | |
10053 : 1445042197:0;.. | |
10054 : 1445042210:0;git status | |
10055 : 1445042227:0;touch hola | |
10056 : 1445042231:0;git status | |
10057 : 1445042263:0;git add hola | |
10058 : 1445042267:0;git status | |
10059 : 1445042313:0;touch hola2 | |
10060 : 1445042315:0;git status | |
10061 : 1445042332:0;git commit -m "Primer Commit" | |
10062 : 1445042343:0;git status | |
10063 : 1445042346:0;git add . | |
10064 : 1445042354:0;git commit -m "Segundo Commit" | |
10065 : 1445042363:0;git status | |
10066 : 1445042376:0;vi hola | |
10067 : 1445042392:0;git diff | |
10068 : 1445042400:0;git add . | |
10069 : 1445042405:0;gc -m "3rd commit" | |
10070 : 1445042411:0;vi hola | |
10071 : 1445042419:0;git diff | |
10072 : 1445042426:0;git status | |
10073 : 1445042497:0;git add . | |
10074 : 1445042502:0;gc -m "4th commit" | |
10075 : 1445042521:0;git log | |
10076 : 1445042563:0;git log --oneline | |
10077 : 1445042568:0;git log --oneline --graph | |
10078 : 1445042587:0;tig | |
10079 : 1445042608:0;git log --oneline | |
10080 : 1445042631:0;git blame hola | |
10081 : 1445042651:0;vi hola | |
10082 : 1445042664:0;git add . | |
10083 : 1445042669:0;gc -m "5th commit" | |
10084 : 1445042675:0;git blame hola | |
10085 : 1445042699:0;git log | |
10086 : 1445042712:0;git log --oneline | |
10087 : 1445042750:0;git show 31a9501 | |
10088 : 1445042830:0;git reset --hard HEAD~1 | |
10089 : 1445042834:0;git log | |
10090 : 1445042854:0;git cherry-pick 31a95 | |
10091 : 1445042858:0;git log | |
10092 : 1445042873:0;git reset --soft HEAD~1 | |
10093 : 1445042878:0;git status | |
10094 : 1445042882:0;git diff | |
10095 : 1445042892:0;git reset HEAD hola | |
10096 : 1445042895:0;git diff | |
10097 : 1445042918:0;git checkout hola | |
10098 : 1445042925:0;vi hola | |
10099 : 1445042938:0;git status | |
10100 : 1445042945:0;git checkout hola | |
10101 : 1445042947:0;git status | |
10102 : 1445042960:0;cd .git | |
10103 : 1445042961:0;ls | |
10104 : 1445042966:0;cat HEAD | |
10105 : 1445042974:0;refs/heads/ | |
10106 : 1445042976:0;ls | |
10107 : 1445042978:0;cat master | |
10108 : 1445042983:0;git log | |
10109 : 1445043004:0;.. | |
10110 : 1445043020:0;git cherry-pick 31a95 | |
10111 : 1445043081:0;git reset --soft HEAD~1 | |
10112 : 1445043087:0;git status | |
10113 : 1445043091:0;cat hola | |
10114 : 1445043126:0;git reset HEAD hola | |
10115 : 1445043128:0;gco hola | |
10116 : 1445043140:0;git log | |
10117 : 1445043156:0;git log --oneline | |
10118 : 1445043165:0;git revert cb9b2f9 | |
10119 : 1445043184:0;git log | |
10120 : 1445043197:0;git show HEAD | |
10121 : 1445043208:0;git show HEAD~1 | |
10122 : 1445043255:0;git log --oneline | |
10123 : 1445043260:0;git revert c28aceb | |
10124 : 1445043285:0;touch production_url | |
10125 : 1445043290:0;vi production_url | |
10126 : 1445043309:0;git add . | |
10127 : 1445043313:0;gc -m "Add production URL" | |
10128 : 1445043319:0;vi production_url | |
10129 : 1445043340:0;git add . | |
10130 : 1445043348:0;gc -m "Local URL" | |
10131 : 1445043355:0;git revert fe2756 | |
10132 : 1445043364:0;cat production_url | |
10133 : 1445043422:0;git remote add origin [email protected]:felipecabargas/git-hangout.git | |
10134 : 1445043475:0;git push -u origin master | |
10135 : 1445043536:0;git reset --hard HEAD~4 | |
10136 : 1445043543:0;git pull origin master | |
10137 : 1445043557:0;git log | |
10138 : 1445043617:0;.. | |
10139 : 1445043619:0;ls | |
10140 : 1445043622:0;rm -rf hangout | |
10141 : 1445043626:0;ls | |
10142 : 1445043630:0;git clone [email protected]:felipecabargas/git-hangout.git | |
10143 : 1445043648:0;ls | |
10144 : 1445043652:0;git-hangout | |
10145 : 1445043654:0;git log | |
10146 : 1445043748:0;git checkout -b en-translation | |
10147 : 1445043758:0;ls | |
10148 : 1445043834:0;touch hello | |
10149 : 1445043836:0;git add . | |
10150 : 1445043844:0;gc -m "Added english file" | |
10151 : 1445043858:0;git log --oneline --graph | |
10152 : 1445043874:0;git checkout master | |
10153 : 1445043878:0;git log --oneline --graph | |
10154 : 1445043937:0;touch hola3 | |
10155 : 1445043939:0;git add . | |
10156 : 1445043946:0;gc -m "hola3" | |
10157 : 1445043953:0;git log --oneline --graph | |
10158 : 1445043966:0;git checkout en-translation | |
10159 : 1445043976:0;git log --oneline --graph | |
10160 : 1445043990:0;ggpush | |
10161 : 1445044047:0;git checkout master | |
10162 : 1445044052:0;git push origin master | |
10163 : 1445044124:0;git checkout en-translation | |
10164 : 1445044137:0;git rebase master | |
10165 : 1445044158:0;git log --oneline --graph | |
10166 : 1445044188:0;git checkout master | |
10167 : 1445044208:0;git merge --no-ff en-translation | |
10168 : 1445044216:0;git log --oneline --graph | |
10169 : 1445044253:0;git checkout -b it-translation | |
10170 : 1445044258:0;touch ciao | |
10171 : 1445044262:0;git add . | |
10172 : 1445044273:0;git commit -m "Added italian file" | |
10173 : 1445044281:0;git checkout master | |
10174 : 1445044288:0;touch hola4 | |
10175 : 1445044292:0;touch hola5 | |
10176 : 1445044294:0;git add . | |
10177 : 1445044297:0;gc -m "Añadido todo" | |
10178 : 1445044308:0;git push origin master | |
10179 : 1445044339:0;gco en-translation | |
10180 : 1445044343:0;ggpush | |
10181 : 1445044352:0;ggpush -f | |
10182 : 1445044397:0;gco it-translation | |
10183 : 1445044455:0;git push origin it-translation | |
10184 : 1445044484:0;git checkout master | |
10185 : 1445044497:0;git merge it-translation | |
10186 : 1445044513:0;git push origin master | |
10187 : 1445044582:0;git log --oneline --graph | |
10188 : 1445044960:0;git push origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment