Guest User

github

a guest
Oct 12th, 2017
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.57 KB | None | 0 0
  1. namanpreetsingh@ubuntu:~$ cd Documents
  2. namanpreetsingh@ubuntu:~/Documents$ cd Hack
  3. namanpreetsingh@ubuntu:~/Documents/Hack$ cd Hacktober-fest2k17
  4. bash: cd: Hacktober-fest2k17: No such file or directory
  5. namanpreetsingh@ubuntu:~/Documents/Hack$ ls
  6. Hacktoberfest-2k17
  7. namanpreetsingh@ubuntu:~/Documents/Hack$ cd Hacktoberfest-2k17
  8. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17$ git log
  9. commit 7309716944f76060c9f4e86a0f292ff368fd699d
  10. Author: Divyam Madaan <divyam3897@gmail.com>
  11. Date: Thu Oct 12 17:24:59 2017 +0530
  12.  
  13. Add about Gurpreet
  14.  
  15. Added description about Gurpreet
  16.  
  17. commit 68b255ab9df67408291970bb8650b6ea73e8b5ae
  18. Author: Divyam Madaan <divyam3897@gmail.com>
  19. Date: Wed Oct 11 17:16:54 2017 +0530
  20.  
  21. Add submissions directory
  22.  
  23. commit af40f0c3df8ea4bbda8a15a41a455b3163993127
  24. Author: Divyam Madaan <divyam3897@gmail.com>
  25. Date: Wed Oct 11 11:43:48 2017 +0000
  26.  
  27. README.md: Update README
  28.  
  29. commit 1b8f373b424df1bd28471b49082917eeeb7bf94a
  30. Author: Divyam Madaan <divyam3897@gmail.com>
  31. Date: Wed Oct 11 11:35:45 2017 +0000
  32.  
  33. Initial commit
  34. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17$ git status
  35. On branch master
  36. Your branch is ahead of 'origin/master' by 1 commit.
  37. (use "git push" to publish your local commits)
  38. nothing to commit, working directory clean
  39. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17$ cd divyam3897
  40. bash: cd: divyam3897: No such file or directory
  41. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17$ ls
  42. README.md submissions
  43. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17$ cd submissions
  44. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ ls
  45. divyam3897 gurpreetsingh00885
  46. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ cd gurpreetsingh00885
  47. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/gurpreetsingh00885$ ls
  48. about.md
  49. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/gurpreetsingh00885$ about.md
  50. about.md: command not found
  51. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/gurpreetsingh00885$ open about.md
  52. Couldn't get a file descriptor referring to the console
  53. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/gurpreetsingh00885$ gedit about.md
  54. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/gurpreetsingh00885$ cd ..
  55. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ cd namanpreetsingh
  56. bash: cd: namanpreetsingh: No such file or directory
  57. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ ls
  58. divyam3897 gurpreetsingh00885
  59. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ git branch
  60. * master
  61. namanpreetsingh
  62. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ git checkout namanpreetsingh
  63. Switched to branch 'namanpreetsingh'
  64. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ ls
  65. divyam3897 namanpreetsingh
  66. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ cd namanpreetsingh
  67. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ ls
  68. about.md
  69. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ gedit abouot.md
  70. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ rm abouot.md
  71. rm: cannot remove 'abouot.md': No such file or directory
  72. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ gedit about.md
  73. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git commit -m "Add about me"
  74. On branch namanpreetsingh
  75. Changes not staged for commit:
  76. modified: about.md
  77.  
  78. no changes added to commit
  79. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git commit -m "Add about namanpreetsingh"
  80. On branch namanpreetsingh
  81. Changes not staged for commit:
  82. modified: about.md
  83.  
  84. no changes added to commit
  85. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git commit --amend -m "Add about namanpreetsingh"
  86. [namanpreetsingh a9ff79c] Add about namanpreetsingh
  87. Date: Wed Oct 11 19:18:13 2017 +0530
  88. 1 file changed, 16 insertions(+)
  89. create mode 100644 submissions/namanpreetsingh/about.md
  90. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git log
  91. commit a9ff79c5a9189863b3706c3a0c4cf9d26464254e
  92. Author: namanpreetsingh <namanpreet1499@gmail.com>
  93. Date: Wed Oct 11 19:18:13 2017 +0530
  94.  
  95. Add about namanpreetsingh
  96.  
  97. commit 68b255ab9df67408291970bb8650b6ea73e8b5ae
  98. Author: Divyam Madaan <divyam3897@gmail.com>
  99. Date: Wed Oct 11 17:16:54 2017 +0530
  100.  
  101. Add submissions directory
  102.  
  103. commit af40f0c3df8ea4bbda8a15a41a455b3163993127
  104. Author: Divyam Madaan <divyam3897@gmail.com>
  105. Date: Wed Oct 11 11:43:48 2017 +0000
  106.  
  107. README.md: Update README
  108.  
  109. commit 1b8f373b424df1bd28471b49082917eeeb7bf94a
  110. Author: Divyam Madaan <divyam3897@gmail.com>
  111. Date: Wed Oct 11 11:35:45 2017 +0000
  112.  
  113. Initial commit
  114. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git status
  115. On branch namanpreetsingh
  116. Changes not staged for commit:
  117. (use "git add <file>..." to update what will be committed)
  118. (use "git checkout -- <file>..." to discard changes in working directory)
  119.  
  120. modified: about.md
  121.  
  122. no changes added to commit (use "git add" and/or "git commit -a")
  123. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git branch
  124. master
  125. * namanpreetsingh
  126. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git checkout master
  127. error: Your local changes to the following files would be overwritten by checkout:
  128. submissions/namanpreetsingh/about.md
  129. Please, commit your changes or stash them before you can switch branches.
  130. Aborting
  131. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git commit -m "Add about namanpreetsingh"
  132. On branch namanpreetsingh
  133. Changes not staged for commit:
  134. modified: about.md
  135.  
  136. no changes added to commit
  137. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git rebase master
  138. Cannot rebase: You have unstaged changes.
  139. Please commit or stash them.
  140. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git commit -m "Add about namanpreetsingh"
  141. On branch namanpreetsingh
  142. Changes not staged for commit:
  143. modified: about.md
  144.  
  145. no changes added to commit
  146. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ cd ..
  147. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ git commit -m "Add about namanpreetsingh"
  148. On branch namanpreetsingh
  149. Changes not staged for commit:
  150. modified: namanpreetsingh/about.md
  151.  
  152. no changes added to commit
  153. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ cd namanpreetsingh
  154. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git statuss
  155. git: 'statuss' is not a git command. See 'git --help'.
  156.  
  157. Did you mean this?
  158. status
  159. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git status
  160. On branch namanpreetsingh
  161. Changes not staged for commit:
  162. (use "git add <file>..." to update what will be committed)
  163. (use "git checkout -- <file>..." to discard changes in working directory)
  164.  
  165. modified: about.md
  166.  
  167. no changes added to commit (use "git add" and/or "git commit -a")
  168. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git add about.md
  169. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git commit -m "Add about namanpreetsingh"
  170. [namanpreetsingh 1ac91cc] Add about namanpreetsingh
  171. 1 file changed, 2 insertions(+), 2 deletions(-)
  172. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git log
  173. commit 1ac91ccd8284b56d5b7aa51b7132e0c9b18fd5c4
  174. Author: namanpreetsingh <namanpreet1499@gmail.com>
  175. Date: Thu Oct 12 18:00:56 2017 +0530
  176.  
  177. Add about namanpreetsingh
  178.  
  179. commit a9ff79c5a9189863b3706c3a0c4cf9d26464254e
  180. Author: namanpreetsingh <namanpreet1499@gmail.com>
  181. Date: Wed Oct 11 19:18:13 2017 +0530
  182.  
  183. Add about namanpreetsingh
  184.  
  185. commit 68b255ab9df67408291970bb8650b6ea73e8b5ae
  186. Author: Divyam Madaan <divyam3897@gmail.com>
  187. Date: Wed Oct 11 17:16:54 2017 +0530
  188.  
  189. Add submissions directory
  190.  
  191. commit af40f0c3df8ea4bbda8a15a41a455b3163993127
  192. Author: Divyam Madaan <divyam3897@gmail.com>
  193. Date: Wed Oct 11 11:43:48 2017 +0000
  194.  
  195. README.md: Update README
  196.  
  197. commit 1b8f373b424df1bd28471b49082917eeeb7bf94a
  198. Author: Divyam Madaan <divyam3897@gmail.com>
  199. Date: Wed Oct 11 11:35:45 2017 +0000
  200.  
  201. Initial commit
  202. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git rebase master
  203. First, rewinding head to replay your work on top of it...
  204. Applying: Add about namanpreetsingh
  205. Applying: Add about namanpreetsingh
  206. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git log
  207. fatal: Unable to read current working directory: No such file or directory
  208. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ cd .
  209. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ cd ..
  210. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ git log
  211. commit 4e03b011d0cfdd153745c668957f914ecf618b23
  212. Author: namanpreetsingh <namanpreet1499@gmail.com>
  213. Date: Thu Oct 12 18:00:56 2017 +0530
  214.  
  215. Add about namanpreetsingh
  216.  
  217. commit b1d621db62c487886e6c299746c47a74e104163b
  218. Author: namanpreetsingh <namanpreet1499@gmail.com>
  219. Date: Wed Oct 11 19:18:13 2017 +0530
  220.  
  221. Add about namanpreetsingh
  222.  
  223. commit 7309716944f76060c9f4e86a0f292ff368fd699d
  224. Author: Divyam Madaan <divyam3897@gmail.com>
  225. Date: Thu Oct 12 17:24:59 2017 +0530
  226.  
  227. Add about Gurpreet
  228.  
  229. Added description about Gurpreet
  230.  
  231. commit 68b255ab9df67408291970bb8650b6ea73e8b5ae
  232. Author: Divyam Madaan <divyam3897@gmail.com>
  233. Date: Wed Oct 11 17:16:54 2017 +0530
  234.  
  235. Add submissions directory
  236.  
  237. commit af40f0c3df8ea4bbda8a15a41a455b3163993127
  238. Author: Divyam Madaan <divyam3897@gmail.com>
  239. Date: Wed Oct 11 11:43:48 2017 +0000
  240.  
  241. README.md: Update README
  242.  
  243. commit 1b8f373b424df1bd28471b49082917eeeb7bf94a
  244. Author: Divyam Madaan <divyam3897@gmail.com>
  245. Date: Wed Oct 11 11:35:45 2017 +0000
  246.  
  247. Initial commit
  248. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ git push
  249. warning: push.default is unset; its implicit value has changed in
  250. Git 2.0 from 'matching' to 'simple'. To squelch this message
  251. and maintain the traditional behavior, use:
  252.  
  253. git config --global push.default matching
  254.  
  255. To squelch this message and adopt the new behavior now, use:
  256.  
  257. git config --global push.default simple
  258.  
  259. When push.default is set to 'matching', git will push local branches
  260. to the remote branches that already exist with the same name.
  261.  
  262. Since Git 2.0, Git defaults to the more conservative 'simple'
  263. behavior, which only pushes the current branch to the corresponding
  264. remote branch that 'git pull' uses to update the current branch.
  265.  
  266. See 'git help config' and search for 'push.default' for further information.
  267. (the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
  268. 'current' instead of 'simple' if you sometimes use older versions of Git)
  269.  
  270. fatal: The current branch namanpreetsingh has no upstream branch.
  271. To push the current branch and set the remote as upstream, use
  272.  
  273. git push --set-upstream origin namanpreetsingh
  274.  
  275. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ git push origin namanpreetsingh^C
  276. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ git push --set-upstream origin namanpreetsingh
  277. Username for 'https://github.com': namanpreetsingh
  278. Password for 'https://namanpreetsingh@github.com':
  279. remote: Invalid username or password.
  280. fatal: Authentication failed for 'https://github.com/namanpreetsingh/Hacktoberfest-2k17.git/'
  281. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ git push --set-upstream origin namanpreetsingh
  282. Username for 'https://github.com': namanpreetsingh
  283. Password for 'https://namanpreetsingh@github.com':
  284. Counting objects: 15, done.
  285. Delta compression using up to 4 threads.
  286. Compressing objects: 100% (12/12), done.
  287. Writing objects: 100% (15/15), 1.72 KiB | 0 bytes/s, done.
  288. Total 15 (delta 3), reused 0 (delta 0)
  289. remote: Resolving deltas: 100% (3/3), done.
  290. To https://github.com/namanpreetsingh/Hacktoberfest-2k17.git
  291. * [new branch] namanpreetsingh -> namanpreetsingh
  292. Branch namanpreetsingh set up to track remote branch namanpreetsingh from origin.
  293. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ git log
  294. commit 4e03b011d0cfdd153745c668957f914ecf618b23
  295. Author: namanpreetsingh <namanpreet1499@gmail.com>
  296. Date: Thu Oct 12 18:00:56 2017 +0530
  297.  
  298. Add about namanpreetsingh
  299.  
  300. commit b1d621db62c487886e6c299746c47a74e104163b
  301. Author: namanpreetsingh <namanpreet1499@gmail.com>
  302. Date: Wed Oct 11 19:18:13 2017 +0530
  303.  
  304. Add about namanpreetsingh
  305.  
  306. commit 7309716944f76060c9f4e86a0f292ff368fd699d
  307. Author: Divyam Madaan <divyam3897@gmail.com>
  308. Date: Thu Oct 12 17:24:59 2017 +0530
  309.  
  310. Add about Gurpreet
  311.  
  312. Added description about Gurpreet
  313.  
  314. commit 68b255ab9df67408291970bb8650b6ea73e8b5ae
  315. Author: Divyam Madaan <divyam3897@gmail.com>
  316. Date: Wed Oct 11 17:16:54 2017 +0530
  317.  
  318. Add submissions directory
  319.  
  320. commit af40f0c3df8ea4bbda8a15a41a455b3163993127
  321. Author: Divyam Madaan <divyam3897@gmail.com>
  322. Date: Wed Oct 11 11:43:48 2017 +0000
  323.  
  324. README.md: Update README
  325.  
  326. commit 1b8f373b424df1bd28471b49082917eeeb7bf94a
  327. Author: Divyam Madaan <divyam3897@gmail.com>
  328. Date: Wed Oct 11 11:35:45 2017 +0000
  329.  
  330. Initial commit
  331. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ git branch
  332. master
  333. * namanpreetsingh
  334. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions$ cd namanpreetsingh
  335. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ gedit about.md
  336. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git add about.md
  337. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git commit -m "Add about namanpreetsingh"
  338. [namanpreetsingh c8dd3e5] Add about namanpreetsingh
  339. 1 file changed, 4 deletions(-)
  340. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git rebase master
  341. Current branch namanpreetsingh is up to date.
  342. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git pull https://github.com/namanpreetsingh/Hacktoberfest-2k17.git master
  343. From https://github.com/namanpreetsingh/Hacktoberfest-2k17
  344. * branch master -> FETCH_HEAD
  345. Already up-to-date.
  346. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ gedit about.md
  347. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git push
  348. warning: push.default is unset; its implicit value has changed in
  349. Git 2.0 from 'matching' to 'simple'. To squelch this message
  350. and maintain the traditional behavior, use:
  351.  
  352. git config --global push.default matching
  353.  
  354. To squelch this message and adopt the new behavior now, use:
  355.  
  356. git config --global push.default simple
  357.  
  358. When push.default is set to 'matching', git will push local branches
  359. to the remote branches that already exist with the same name.
  360.  
  361. Since Git 2.0, Git defaults to the more conservative 'simple'
  362. behavior, which only pushes the current branch to the corresponding
  363. remote branch that 'git pull' uses to update the current branch.
  364.  
  365. See 'git help config' and search for 'push.default' for further information.
  366. (the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
  367. 'current' instead of 'simple' if you sometimes use older versions of Git)
  368.  
  369. Username for 'https://github.com': namanpreetsingh
  370. Password for 'https://namanpreetsingh@github.com':
  371. Counting objects: 5, done.
  372. Delta compression using up to 4 threads.
  373. Compressing objects: 100% (4/4), done.
  374. Writing objects: 100% (5/5), 442 bytes | 0 bytes/s, done.
  375. Total 5 (delta 2), reused 0 (delta 0)
  376. remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
  377. To https://github.com/namanpreetsingh/Hacktoberfest-2k17.git
  378. 4e03b01..c8dd3e5 namanpreetsingh -> namanpreetsingh
  379. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git squash
  380. git: 'squash' is not a git command. See 'git --help'.
  381.  
  382. Did you mean this?
  383. stash
  384. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git log
  385. commit c8dd3e534e0f550888ed312b9c09aff564796481
  386. Author: namanpreetsingh <namanpreet1499@gmail.com>
  387. Date: Thu Oct 12 18:21:32 2017 +0530
  388.  
  389. Add about namanpreetsingh
  390.  
  391. commit 4e03b011d0cfdd153745c668957f914ecf618b23
  392. Author: namanpreetsingh <namanpreet1499@gmail.com>
  393. Date: Thu Oct 12 18:00:56 2017 +0530
  394.  
  395. Add about namanpreetsingh
  396.  
  397. commit b1d621db62c487886e6c299746c47a74e104163b
  398. Author: namanpreetsingh <namanpreet1499@gmail.com>
  399. Date: Wed Oct 11 19:18:13 2017 +0530
  400.  
  401. Add about namanpreetsingh
  402.  
  403. commit 7309716944f76060c9f4e86a0f292ff368fd699d
  404. Author: Divyam Madaan <divyam3897@gmail.com>
  405. Date: Thu Oct 12 17:24:59 2017 +0530
  406.  
  407. Add about Gurpreet
  408.  
  409. Added description about Gurpreet
  410.  
  411. commit 68b255ab9df67408291970bb8650b6ea73e8b5ae
  412. Author: Divyam Madaan <divyam3897@gmail.com>
  413. Date: Wed Oct 11 17:16:54 2017 +0530
  414.  
  415. Add submissions directory
  416.  
  417. commit af40f0c3df8ea4bbda8a15a41a455b3163993127
  418. Author: Divyam Madaan <divyam3897@gmail.com>
  419. Date: Wed Oct 11 11:43:48 2017 +0000
  420.  
  421. README.md: Update README
  422.  
  423. commit 1b8f373b424df1bd28471b49082917eeeb7bf94a
  424. Author: Divyam Madaan <divyam3897@gmail.com>
  425. Date: Wed Oct 11 11:35:45 2017 +0000
  426.  
  427. Initial commit
  428.  
  429. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git reset --soft ^C
  430. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ ^C
  431. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git reset --soft c8dd3e534e0f550888ed312b9c09aff564796481
  432. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git log
  433. commit c8dd3e534e0f550888ed312b9c09aff564796481
  434. Author: namanpreetsingh <namanpreet1499@gmail.com>
  435. Date: Thu Oct 12 18:21:32 2017 +0530
  436.  
  437. Add about namanpreetsingh
  438.  
  439. commit 4e03b011d0cfdd153745c668957f914ecf618b23
  440. Author: namanpreetsingh <namanpreet1499@gmail.com>
  441. Date: Thu Oct 12 18:00:56 2017 +0530
  442.  
  443. Add about namanpreetsingh
  444.  
  445. commit b1d621db62c487886e6c299746c47a74e104163b
  446. Author: namanpreetsingh <namanpreet1499@gmail.com>
  447. Date: Wed Oct 11 19:18:13 2017 +0530
  448.  
  449. Add about namanpreetsingh
  450.  
  451. commit 7309716944f76060c9f4e86a0f292ff368fd699d
  452. Author: Divyam Madaan <divyam3897@gmail.com>
  453. Date: Thu Oct 12 17:24:59 2017 +0530
  454.  
  455. Add about Gurpreet
  456.  
  457. Added description about Gurpreet
  458.  
  459. commit 68b255ab9df67408291970bb8650b6ea73e8b5ae
  460. Author: Divyam Madaan <divyam3897@gmail.com>
  461. Date: Wed Oct 11 17:16:54 2017 +0530
  462.  
  463. Add submissions directory
  464.  
  465. commit af40f0c3df8ea4bbda8a15a41a455b3163993127
  466. Author: Divyam Madaan <divyam3897@gmail.com>
  467. Date: Wed Oct 11 11:43:48 2017 +0000
  468.  
  469. README.md: Update README
  470.  
  471. commit 1b8f373b424df1bd28471b49082917eeeb7bf94a
  472. Author: Divyam Madaan <divyam3897@gmail.com>
  473. Date: Wed Oct 11 11:35:45 2017 +0000
  474.  
  475. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git reset --soft 4e03b011d0cfdd153745c668957f914ecf618b23
  476. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git log
  477. commit 4e03b011d0cfdd153745c668957f914ecf618b23
  478. Author: namanpreetsingh <namanpreet1499@gmail.com>
  479. Date: Thu Oct 12 18:00:56 2017 +0530
  480.  
  481. Add about namanpreetsingh
  482.  
  483. commit b1d621db62c487886e6c299746c47a74e104163b
  484. Author: namanpreetsingh <namanpreet1499@gmail.com>
  485. Date: Wed Oct 11 19:18:13 2017 +0530
  486.  
  487. Add about namanpreetsingh
  488.  
  489. commit 7309716944f76060c9f4e86a0f292ff368fd699d
  490. Author: Divyam Madaan <divyam3897@gmail.com>
  491. Date: Thu Oct 12 17:24:59 2017 +0530
  492.  
  493. Add about Gurpreet
  494.  
  495. Added description about Gurpreet
  496.  
  497. commit 68b255ab9df67408291970bb8650b6ea73e8b5ae
  498. Author: Divyam Madaan <divyam3897@gmail.com>
  499. Date: Wed Oct 11 17:16:54 2017 +0530
  500.  
  501. Add submissions directory
  502.  
  503. commit af40f0c3df8ea4bbda8a15a41a455b3163993127
  504. Author: Divyam Madaan <divyam3897@gmail.com>
  505. Date: Wed Oct 11 11:43:48 2017 +0000
  506.  
  507. README.md: Update README
  508.  
  509. commit 1b8f373b424df1bd28471b49082917eeeb7bf94a
  510. Author: Divyam Madaan <divyam3897@gmail.com>
  511. Date: Wed Oct 11 11:35:45 2017 +0000
  512.  
  513. Initial commit
  514. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git reset --soft commit b1d621db62c487886e6c299746c47a74e104163b
  515. fatal: ambiguous argument 'commit': unknown revision or path not in the working tree.
  516. Use '--' to separate paths from revisions, like this:
  517. 'git <command> [<revision>...] -- [<file>...]'
  518. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git reset --soft b1d621db62c487886e6c299746c47a74e104163b
  519. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git log
  520. commit b1d621db62c487886e6c299746c47a74e104163b
  521. Author: namanpreetsingh <namanpreet1499@gmail.com>
  522. Date: Wed Oct 11 19:18:13 2017 +0530
  523.  
  524. Add about namanpreetsingh
  525.  
  526. commit 7309716944f76060c9f4e86a0f292ff368fd699d
  527. Author: Divyam Madaan <divyam3897@gmail.com>
  528. Date: Thu Oct 12 17:24:59 2017 +0530
  529.  
  530. Add about Gurpreet
  531.  
  532. Added description about Gurpreet
  533.  
  534. commit 68b255ab9df67408291970bb8650b6ea73e8b5ae
  535. Author: Divyam Madaan <divyam3897@gmail.com>
  536. Date: Wed Oct 11 17:16:54 2017 +0530
  537.  
  538. Add submissions directory
  539.  
  540. commit af40f0c3df8ea4bbda8a15a41a455b3163993127
  541. Author: Divyam Madaan <divyam3897@gmail.com>
  542. Date: Wed Oct 11 11:43:48 2017 +0000
  543.  
  544. README.md: Update README
  545.  
  546. commit 1b8f373b424df1bd28471b49082917eeeb7bf94a
  547. Author: Divyam Madaan <divyam3897@gmail.com>
  548. Date: Wed Oct 11 11:35:45 2017 +0000
  549.  
  550. Initial commit
  551. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git reset --soft 7309716944f76060c9f4e86a0f292ff368fd699d
  552. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$
  553. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git log
  554. commit 7309716944f76060c9f4e86a0f292ff368fd699d
  555. Author: Divyam Madaan <divyam3897@gmail.com>
  556. Date: Thu Oct 12 17:24:59 2017 +0530
  557.  
  558. Add about Gurpreet
  559.  
  560. Added description about Gurpreet
  561.  
  562. commit 68b255ab9df67408291970bb8650b6ea73e8b5ae
  563. Author: Divyam Madaan <divyam3897@gmail.com>
  564. Date: Wed Oct 11 17:16:54 2017 +0530
  565.  
  566. Add submissions directory
  567.  
  568. commit af40f0c3df8ea4bbda8a15a41a455b3163993127
  569. Author: Divyam Madaan <divyam3897@gmail.com>
  570. Date: Wed Oct 11 11:43:48 2017 +0000
  571.  
  572. README.md: Update README
  573.  
  574. commit 1b8f373b424df1bd28471b49082917eeeb7bf94a
  575. Author: Divyam Madaan <divyam3897@gmail.com>
  576. Date: Wed Oct 11 11:35:45 2017 +0000
  577.  
  578. Initial commit
  579. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git commit -m "Add about namanpreetsingh"
  580. [namanpreetsingh 0405a00] Add about namanpreetsingh
  581. 1 file changed, 12 insertions(+)
  582. create mode 100644 submissions/namanpreetsingh/about.md
  583. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$ git log
  584. commit 0405a00264f77cf325103bea12421be87a9804bc
  585. Author: namanpreetsingh <namanpreet1499@gmail.com>
  586. Date: Thu Oct 12 18:43:43 2017 +0530
  587.  
  588. Add about namanpreetsingh
  589.  
  590. commit 7309716944f76060c9f4e86a0f292ff368fd699d
  591. Author: Divyam Madaan <divyam3897@gmail.com>
  592. Date: Thu Oct 12 17:24:59 2017 +0530
  593.  
  594. Add about Gurpreet
  595.  
  596. Added description about Gurpreet
  597.  
  598. commit 68b255ab9df67408291970bb8650b6ea73e8b5ae
  599. Author: Divyam Madaan <divyam3897@gmail.com>
  600. Date: Wed Oct 11 17:16:54 2017 +0530
  601.  
  602. Add submissions directory
  603.  
  604. commit af40f0c3df8ea4bbda8a15a41a455b3163993127
  605. Author: Divyam Madaan <divyam3897@gmail.com>
  606. Date: Wed Oct 11 11:43:48 2017 +0000
  607.  
  608. README.md: Update README
  609.  
  610. commit 1b8f373b424df1bd28471b49082917eeeb7bf94a
  611. Author: Divyam Madaan <divyam3897@gmail.com>
  612. Date: Wed Oct 11 11:35:45 2017 +0000
  613.  
  614. Initial commit
  615. namanpreetsingh@ubuntu:~/Documents/Hack/Hacktoberfest-2k17/submissions/namanpreetsingh$
Add Comment
Please, Sign In to add comment