Guest User

Untitled

a guest
Apr 19th, 2018
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.68 KB | None | 0 0
  1. Last login: Tue Apr 10 09:15:27 on ttys001
  2.  
  3. ~
  4. $ cd dev/blueprint/
  5. .DS_Store TJC1702/
  6.  
  7. ~
  8. $ cd dev/blueprint/TJC1702/
  9.  
  10. ~/dev/blueprint/TJC1702
  11. $ ls
  12. TJC1702_Home Page_V01.sketch homepage-static
  13.  
  14. ~/dev/blueprint/TJC1702
  15. $ cd homepage-static/
  16.  
  17. ~/dev/blueprint/TJC1702/homepage-static on master [?]
  18. $ code .
  19.  
  20. ~/dev/blueprint/TJC1702/homepage-static on master [?]
  21. $ mkdir pages
  22.  
  23. ~/dev/blueprint/TJC1702/homepage-static on master [!?]
  24. $ git status
  25. On branch master
  26. Changes not staged for commit:
  27. (use "git add <file>..." to update what will be committed)
  28. (use "git checkout -- <file>..." to discard changes in working directory)
  29.  
  30. modified: index.html
  31.  
  32. Untracked files:
  33. (use "git add <file>..." to include in what will be committed)
  34.  
  35. assets/
  36. styles/
  37.  
  38. no changes added to commit (use "git add" and/or "git commit -a")
  39.  
  40. ~/dev/blueprint/TJC1702/homepage-static on master [!?]
  41. $ git add assets/
  42.  
  43. ~/dev/blueprint/TJC1702/homepage-static on master [+!?]
  44. $ git status
  45. On branch master
  46. Changes to be committed:
  47. (use "git reset HEAD <file>..." to unstage)
  48.  
  49. new file: assets/images/TJCox-33-Homepage-Hero.jpg
  50.  
  51. Changes not staged for commit:
  52. (use "git add <file>..." to update what will be committed)
  53. (use "git checkout -- <file>..." to discard changes in working directory)
  54.  
  55. modified: index.html
  56.  
  57. Untracked files:
  58. (use "git add <file>..." to include in what will be committed)
  59.  
  60. styles/
  61.  
  62.  
  63. ~/dev/blueprint/TJC1702/homepage-static on master [+!?]
  64. $ git commit
  65. [master f23b072] Add ./assets
  66. 1 file changed, 0 insertions(+), 0 deletions(-)
  67. create mode 100644 assets/images/TJCox-33-Homepage-Hero.jpg
  68.  
  69. ~/dev/blueprint/TJC1702/homepage-static on master [!?]
  70. $ git remote add origin git@github.com:tomatohammado/TJC1702-static.git
  71.  
  72. ~/dev/blueprint/TJC1702/homepage-static on master [!?]
  73. $ git push -u origin master
  74. The authenticity of host 'github.com (192.30.253.113)' can't be established.
  75. RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
  76. Are you sure you want to continue connecting (yes/no)? yes
  77. Warning: Permanently added 'github.com,192.30.253.113' (RSA) to the list of known hosts.
  78. git@github.com: Permission denied (publickey).
  79. fatal: Could not read from remote repository.
  80.  
  81. Please make sure you have the correct access rights
  82. and the repository exists.
  83.  
  84. ~/dev/blueprint/TJC1702/homepage-static on master [!?]
  85. $ ssh-keygen -t rsa -b 4096 -C "hmd.node@gmail.com"
  86. Generating public/private rsa key pair.
  87. Enter file in which to save the key (/Users/hammadmalik/.ssh/id_rsa):
  88. Enter passphrase (empty for no passphrase):
  89. Enter same passphrase again:
  90. Your identification has been saved in /Users/hammadmalik/.ssh/id_rsa.
  91. Your public key has been saved in /Users/hammadmalik/.ssh/id_rsa.pub.
  92. The key fingerprint is:
  93. SHA256:wXw8+bnZgSi8TB8b0NX/TVuETNar9o0YDCqOMDx/Cvg hmd.node@gmail.com
  94. The key's randomart image is:
  95. +---[RSA 4096]----+
  96. | .+oo |
  97. | o o o .+ o|
  98. | = * o.|
  99. | . +.+ o .+|
  100. | . S.+o+ o.=|
  101. | .= .o.+ +o* oo|
  102. |. .= o .o o +oo..|
  103. | . .o o . ...|
  104. | E .o |
  105. +----[SHA256]-----+
  106.  
  107. ~/dev/blueprint/TJC1702/homepage-static on master [!?]
  108. $ eval "$(ssh-agent -s)"
  109. Agent pid 50111
  110.  
  111. ~/dev/blueprint/TJC1702/homepage-static on master [!?]
  112. $ ls -a ~/.ssh/
  113. . .. id_rsa id_rsa.pub known_hosts
  114.  
  115. ~/dev/blueprint/TJC1702/homepage-static on master [!?]
  116. $ touch ~/.ssh/config
  117.  
  118. ~/dev/blueprint/TJC1702/homepage-static on master [!?]
  119. $ code ~/.ssh/config
  120.  
  121. ~/dev/blueprint/TJC1702/homepage-static on master [!?]
  122. $ ssh-add -K ~/.ssh/id_rsa
  123. Identity added: /Users/hammadmalik/.ssh/id_rsa (/Users/hammadmalik/.ssh/id_rsa)
  124.  
  125. ~/dev/blueprint/TJC1702/homepage-static on master [!?]
  126. $ pbcopy < ~/.ssh/id_rsa.pub
  127.  
  128. ~/dev/blueprint/TJC1702/homepage-static on master [!?]
  129. $ git push -u origin master
  130. Counting objects: 8, done.
  131. Delta compression using up to 8 threads.
  132. Compressing objects: 100% (6/6), done.
  133. Writing objects: 100% (8/8), 201.92 KiB | 2.24 MiB/s, done.
  134. Total 8 (delta 0), reused 0 (delta 0)
  135. To github.com:tomatohammado/TJC1702-static.git
  136. * [new branch] master -> master
  137. Branch 'master' set up to track remote branch 'master' from 'origin'.
  138.  
  139. ~/dev/blueprint/TJC1702/homepage-static on master [!?]
  140. $ git status
  141. On branch master
  142. Your branch is up to date with 'origin/master'.
  143.  
  144. Changes not staged for commit:
  145. (use "git add <file>..." to update what will be committed)
  146. (use "git checkout -- <file>..." to discard changes in working directory)
  147.  
  148. modified: index.html
  149.  
  150. Untracked files:
  151. (use "git add <file>..." to include in what will be committed)
  152.  
  153. styles/
  154.  
  155. no changes added to commit (use "git add" and/or "git commit -a")
  156.  
  157. ~/dev/blueprint/TJC1702/homepage-static on master [!?]
  158. $ git add styles/
  159.  
  160. ~/dev/blueprint/TJC1702/homepage-static on master [+!]
  161. $ git status
  162. On branch master
  163. Your branch is up to date with 'origin/master'.
  164.  
  165. Changes to be committed:
  166. (use "git reset HEAD <file>..." to unstage)
  167.  
  168. new file: styles/style.css
  169.  
  170. Changes not staged for commit:
  171. (use "git add <file>..." to update what will be committed)
  172. (use "git checkout -- <file>..." to discard changes in working directory)
  173.  
  174. modified: index.html
  175.  
  176.  
  177. ~/dev/blueprint/TJC1702/homepage-static on master [+!]
  178. $ git add .
  179.  
  180. ~/dev/blueprint/TJC1702/homepage-static on master [+]
  181. $ git commit
  182. [master 95bd35a] Add ./styles
  183. 2 files changed, 15 insertions(+)
  184. create mode 100644 styles/style.css
  185.  
  186. ~/dev/blueprint/TJC1702/homepage-static on master
  187. $ git status
  188. On branch master
  189. Your branch is ahead of 'origin/master' by 1 commit.
  190. (use "git push" to publish your local commits)
  191.  
  192. nothing to commit, working tree clean
  193.  
  194. ~/dev/blueprint/TJC1702/homepage-static on master
  195. $ git push
  196. Warning: Permanently added the RSA host key for IP address '192.30.253.112' to the list of known hosts.
  197. Counting objects: 5, done.
  198. Delta compression using up to 8 threads.
  199. Compressing objects: 100% (4/4), done.
  200. Writing objects: 100% (5/5), 761 bytes | 761.00 KiB/s, done.
  201. Total 5 (delta 1), reused 0 (delta 0)
  202. remote: Resolving deltas: 100% (1/1), completed with 1 local object.
  203. To github.com:tomatohammado/TJC1702-static.git
  204. f23b072..95bd35a master -> master
  205.  
  206. ~/dev/blueprint/TJC1702/homepage-static on master
  207. $ git status
  208. On branch master
  209. Your branch is up to date with 'origin/master'.
  210.  
  211. Changes not staged for commit:
  212. (use "git add <file>..." to update what will be committed)
  213. (use "git checkout -- <file>..." to discard changes in working directory)
  214.  
  215. modified: assets/images/TJCox-33-Homepage-Hero.jpg
  216. modified: index.html
  217. modified: styles/style.css
  218.  
  219. no changes added to commit (use "git add" and/or "git commit -a")
  220.  
  221. ~/dev/blueprint/TJC1702/homepage-static on master [!]
  222. $ git add assets/images/TJCox-33-Homepage-Hero.jpg
  223.  
  224. ~/dev/blueprint/TJC1702/homepage-static on master [+!]
  225. $ git commit
  226. [master 539e66f] Add fixed hero image
  227. 1 file changed, 0 insertions(+), 0 deletions(-)
  228.  
  229. ~/dev/blueprint/TJC1702/homepage-static on master [!]
  230. $ git status
  231. On branch master
  232. Your branch is ahead of 'origin/master' by 1 commit.
  233. (use "git push" to publish your local commits)
  234.  
  235. Changes not staged for commit:
  236. (use "git add <file>..." to update what will be committed)
  237. (use "git checkout -- <file>..." to discard changes in working directory)
  238.  
  239. modified: index.html
  240. modified: styles/style.css
  241.  
  242. no changes added to commit (use "git add" and/or "git commit -a")
  243.  
  244. ~/dev/blueprint/TJC1702/homepage-static on master [!]
  245. $ git add .
  246.  
  247. ~/dev/blueprint/TJC1702/homepage-static on master [+]
  248. $ git commit
  249. [master df76c2b] Add hero image section, and preliminary styles
  250. 2 files changed, 13 insertions(+)
  251.  
  252. ~/dev/blueprint/TJC1702/homepage-static on master
  253. $ git push
  254. Counting objects: 10, done.
  255. Delta compression using up to 8 threads.
  256. Compressing objects: 100% (8/8), done.
  257. Writing objects: 100% (10/10), 27.23 KiB | 6.81 MiB/s, done.
  258. Total 10 (delta 3), reused 0 (delta 0)
  259. remote: Resolving deltas: 100% (3/3), completed with 3 local objects.
  260. To github.com:tomatohammado/TJC1702-static.git
  261. 95bd35a..df76c2b master -> master
  262.  
  263. ~/dev/blueprint/TJC1702/homepage-static on master
  264. $ git checkout -b mvp-homepage
  265. Switched to a new branch 'mvp-homepage'
  266.  
  267. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage
  268. $ git push
  269. fatal: The current branch mvp-homepage has no upstream branch.
  270. To push the current branch and set the remote as upstream, use
  271.  
  272. git push --set-upstream origin mvp-homepage
  273.  
  274.  
  275. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage
  276. $ git push --set-upstream origin mvp-homepage
  277. Total 0 (delta 0), reused 0 (delta 0)
  278. To github.com:tomatohammado/TJC1702-static.git
  279. * [new branch] mvp-homepage -> mvp-homepage
  280. Branch 'mvp-homepage' set up to track remote branch 'mvp-homepage' from 'origin'.
  281.  
  282. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage
  283. $ git status
  284. On branch mvp-homepage
  285. Your branch is up to date with 'origin/mvp-homepage'.
  286.  
  287. Untracked files:
  288. (use "git add <file>..." to include in what will be committed)
  289.  
  290. assets/images/Cox - Logo FINAL MC17-Pantone.png
  291.  
  292. nothing added to commit but untracked files present (use "git add" to track)
  293.  
  294. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage [?]
  295. $ git add .
  296.  
  297. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage [+]
  298. $ git commit
  299. [mvp-homepage 0caef49] Add logo asset
  300. 1 file changed, 0 insertions(+), 0 deletions(-)
  301. create mode 100644 assets/images/Cox - Logo FINAL MC17-Pantone.png
  302.  
  303. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage
  304. $ git push
  305. Counting objects: 5, done.
  306. Delta compression using up to 8 threads.
  307. Compressing objects: 100% (4/4), done.
  308. Writing objects: 100% (5/5), 29.50 KiB | 14.75 MiB/s, done.
  309. Total 5 (delta 0), reused 0 (delta 0)
  310. To github.com:tomatohammado/TJC1702-static.git
  311. df76c2b..0caef49 mvp-homepage -> mvp-homepage
  312.  
  313. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage
  314. $ git status
  315. On branch mvp-homepage
  316. Your branch is up to date with 'origin/mvp-homepage'.
  317.  
  318. Changes not staged for commit:
  319. (use "git add/rm <file>..." to update what will be committed)
  320. (use "git checkout -- <file>..." to discard changes in working directory)
  321.  
  322. deleted: assets/images/Cox - Logo FINAL MC17-Pantone.png
  323. modified: index.html
  324. modified: styles/style.css
  325.  
  326. Untracked files:
  327. (use "git add <file>..." to include in what will be committed)
  328.  
  329. assets/images/Cox-Logo-MC17-Pantone.png
  330.  
  331. no changes added to commit (use "git add" and/or "git commit -a")
  332.  
  333. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage [!?]
  334. $ git add .
  335.  
  336. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage [+]
  337. $ git commit
  338. [mvp-homepage a035db5] Implement logo in hero section
  339. 3 files changed, 15 insertions(+), 1 deletion(-)
  340. rename assets/images/{Cox - Logo FINAL MC17-Pantone.png => Cox-Logo-MC17-Pantone.png} (100%)
  341.  
  342. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage
  343. $ git push
  344. Counting objects: 7, done.
  345. Delta compression using up to 8 threads.
  346. Compressing objects: 100% (5/5), done.
  347. Writing objects: 100% (7/7), 883 bytes | 883.00 KiB/s, done.
  348. Total 7 (delta 2), reused 0 (delta 0)
  349. remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
  350. To github.com:tomatohammado/TJC1702-static.git
  351. 0caef49..a035db5 mvp-homepage -> mvp-homepage
  352.  
  353. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage
  354. $ git status
  355. On branch mvp-homepage
  356. Your branch is up to date with 'origin/mvp-homepage'.
  357.  
  358. Changes not staged for commit:
  359. (use "git add <file>..." to update what will be committed)
  360. (use "git checkout -- <file>..." to discard changes in working directory)
  361.  
  362. modified: styles/style.css
  363.  
  364. Untracked files:
  365. (use "git add <file>..." to include in what will be committed)
  366.  
  367. assets/images/header-collapsable-arrows.svg
  368.  
  369. no changes added to commit (use "git add" and/or "git commit -a")
  370.  
  371. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage [!?]
  372. $ git add assets/.
  373.  
  374. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage [+!]
  375. $ git status
  376. On branch mvp-homepage
  377. Your branch is up to date with 'origin/mvp-homepage'.
  378.  
  379. Changes to be committed:
  380. (use "git reset HEAD <file>..." to unstage)
  381.  
  382. new file: assets/images/header-collapsable-arrows.svg
  383.  
  384. Changes not staged for commit:
  385. (use "git add <file>..." to update what will be committed)
  386. (use "git checkout -- <file>..." to discard changes in working directory)
  387.  
  388. modified: styles/style.css
  389.  
  390.  
  391. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage [+!]
  392. $ git commit
  393. [mvp-homepage ef99235] Add SVG for collapsable arrows
  394. 1 file changed, 13 insertions(+)
  395. create mode 100644 assets/images/header-collapsable-arrows.svg
  396.  
  397. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage [!]
  398. $ git push
  399. Counting objects: 5, done.
  400. Delta compression using up to 8 threads.
  401. Compressing objects: 100% (4/4), done.
  402. Writing objects: 100% (5/5), 852 bytes | 852.00 KiB/s, done.
  403. Total 5 (delta 0), reused 0 (delta 0)
  404. To github.com:tomatohammado/TJC1702-static.git
  405. a035db5..ef99235 mvp-homepage -> mvp-homepage
  406.  
  407. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage [!]
  408. $ git status
  409. On branch mvp-homepage
  410. Your branch is up to date with 'origin/mvp-homepage'.
  411.  
  412. Changes not staged for commit:
  413. (use "git add <file>..." to update what will be committed)
  414. (use "git checkout -- <file>..." to discard changes in working directory)
  415.  
  416. modified: index.html
  417. modified: styles/style.css
  418.  
  419. no changes added to commit (use "git add" and/or "git commit -a")
  420.  
  421. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage [!]
  422. $ git add .
  423.  
  424. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage [+]
  425. $ git commit
  426. [mvp-homepage efe57b9] Add styles to header sections
  427. 2 files changed, 57 insertions(+), 22 deletions(-)
  428.  
  429. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage
  430. $ git push
  431. Counting objects: 5, done.
  432. Delta compression using up to 8 threads.
  433. Compressing objects: 100% (4/4), done.
  434. Writing objects: 100% (5/5), 916 bytes | 916.00 KiB/s, done.
  435. Total 5 (delta 2), reused 0 (delta 0)
  436. remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
  437. To github.com:tomatohammado/TJC1702-static.git
  438. ef99235..efe57b9 mvp-homepage -> mvp-homepage
  439.  
  440. ~/dev/blueprint/TJC1702/homepage-static on mvp-homepage
  441. $
Add Comment
Please, Sign In to add comment