Advertisement
Guest User

Untitled

a guest
Aug 27th, 2017
564
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. $ git fetch origin pull/3/head:itinosesan
  2. remote: Counting objects: 2411, done.
  3. remote: Compressing objects: 100% (2068/2068), done.
  4. remote: Total 2411 (delta 90), reused 2409 (delta 89), pack-reused 0
  5. Receiving objects: 100% (2411/2411), 9.51 MiB | 2.33 MiB/s, done.
  6. Resolving deltas: 100% (90/90), done.
  7. From github.com:Linux-FUN/Linux-FUN.github.io
  8. * [new ref] refs/pull/3/head -> itinosesan
  9.  
  10. $ git checkout itinosesan
  11. Switched to branch 'itinosesan'
  12.  
  13. $ git log | head -n 12
  14. commit efc6fab24188efc0effc5f71c632838e59c8131f
  15. Author: ItinoseSan <jkekun@gmail.com>
  16. Date: Sat Aug 26 19:21:58 2017 +0900
  17.  
  18. Delete vcs.xml
  19.  
  20. commit 735e39f87decfcdc7105c793e48dede4ec8f992a
  21. Author: ItinoseSan <jkekun@gmail.com>
  22. Date: Sat Aug 26 19:21:51 2017 +0900
  23.  
  24. Delete workspace.xml
  25.  
  26.  
  27. $ git log | tail -n 12
  28.  
  29. commit 049497505037a7238243739bb535248f92ceaf51
  30. Author: ToshihitoKon <shiratori991@gmail.com>
  31. Date: Fri Aug 25 19:53:26 2017 +0900
  32.  
  33. initial commit
  34.  
  35. commit d24f8f66c446eb9e128ac57969a5ab0a498632b9
  36. Author: Toshihito Kon <ToshihitoKon@users.noreply.github.com>
  37. Date: Fri Aug 25 19:50:47 2017 +0900
  38.  
  39. Initial commit
  40.  
  41. $ git reset 049497505037a7238243739bb535248f92ceaf51
  42. Unstaged changes after reset:
  43. D dotasterisk/index.html
  44.  
  45. $ git log
  46. commit 049497505037a7238243739bb535248f92ceaf51 (HEAD -> itinosesan, origin/master, origin/HEAD, master)
  47. Author: ToshihitoKon <shiratori991@gmail.com>
  48. Date: Fri Aug 25 19:53:26 2017 +0900
  49.  
  50. initial commit
  51.  
  52. commit d24f8f66c446eb9e128ac57969a5ab0a498632b9
  53. Author: Toshihito Kon <ToshihitoKon@users.noreply.github.com>
  54. Date: Fri Aug 25 19:50:47 2017 +0900
  55.  
  56. Initial commit
  57.  
  58. $ git add *
  59.  
  60. $ git commit -m 'DotAsteriskのHP作成'
  61. [itinosesan 33aba82] DotAsteriskのHP作成
  62. 14 files changed, 12558 insertions(+), 10 deletions(-)
  63. create mode 100644 dotasterisk/home/bootstrap.html
  64. create mode 100644 dotasterisk/home/css/bootstrap.css
  65. create mode 100644 dotasterisk/home/css/bootstrap.min.css
  66. create mode 100644 dotasterisk/home/desc.html
  67. create mode 100644 dotasterisk/home/fonts/glyphicons-halflings-regular.eot
  68. create mode 100644 dotasterisk/home/fonts/glyphicons-halflings-regular.svg
  69. create mode 100644 dotasterisk/home/fonts/glyphicons-halflings-regular.ttf
  70. create mode 100644 dotasterisk/home/fonts/glyphicons-halflings-regular.woff
  71. create mode 100644 dotasterisk/home/fonts/glyphicons-halflings-regular.woff2
  72. create mode 100644 dotasterisk/home/js/bootstrap.js
  73. create mode 100644 dotasterisk/home/js/bootstrap.min.js
  74. create mode 100644 dotasterisk/home/top.html
  75. create mode 100644 dotasterisk/home/top.scss
  76. delete mode 100644 dotasterisk/index.html
  77.  
  78. $ git log
  79. commit 33aba825e33f95a519f65fae6ce74550d3332c1f (HEAD -> itinosesan)
  80. Author: ToshihitoKon <shiratori991@gmail.com>
  81. Date: Sun Aug 27 18:32:34 2017 +0900
  82.  
  83. DotAsteriskのHP作成
  84.  
  85. commit 049497505037a7238243739bb535248f92ceaf51 (origin/master, origin/HEAD, master)
  86. Author: ToshihitoKon <shiratori991@gmail.com>
  87. Date: Fri Aug 25 19:53:26 2017 +0900
  88.  
  89. initial commit
  90.  
  91. commit d24f8f66c446eb9e128ac57969a5ab0a498632b9
  92. Author: Toshihito Kon <ToshihitoKon@users.noreply.github.com>
  93. Date: Fri Aug 25 19:50:47 2017 +0900
  94.  
  95. Initial commit
  96.  
  97. $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement