Advertisement
Guest User

Untitled

a guest
Jan 2nd, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.07 KB | None | 0 0
  1. sundi3yansyah@library:~$ cd github/
  2. sundi3yansyah@library:~/github$ ls
  3. apache-installer forum-amikom jekyll-jquery-fluidbox rails sundi3yansyah.com
  4. asciinema git-config KAMPOENG sbh-shell SunQA
  5. awesome GitHubAPI-CodeIgniter-SemanticUI libscode SUBLIME_TEXT SurabayaBlackhat
  6. Bootstrap_Metro_Dashboard github-contributions mac-osx-lion-theme SunBlue Tank-Auth
  7. CI-many-app GitIndonesia nginxid SunComboboxIgniter ThemeMyBBCentral
  8. codeigniter-id input-ticket push.sh SunCoordino wh04mi
  9. sundi3yansyah@library:~/github$ git clone https://github.com/DeVoresyah/OLShop
  10. Cloning into 'OLShop'...
  11. remote: Counting objects: 109, done.
  12. remote: Compressing objects: 100% (95/95), done.
  13. remote: Total 109 (delta 13), reused 106 (delta 13), pack-reused 0
  14. Receiving objects: 100% (109/109), 3.03 MiB | 470.00 KiB/s, done.
  15. Resolving deltas: 100% (13/13), done.
  16. Checking connectivity... done.
  17. sundi3yansyah@library:~/github$ subl /etc/nginx/sites-available/default.conf
  18. sundi3yansyah@library:~/github$
  19. sundi3yansyah@library:~/github$ git clone https://github.com/SunDi3yansyah/Kontribusi-Repo
  20. Cloning into 'Kontribusi-Repo'...
  21. remote: Counting objects: 3, done.
  22. remote: Total 3 (delta 0), reused 3 (delta 0), pack-reused 0
  23. Unpacking objects: 100% (3/3), done.
  24. Checking connectivity... done.
  25. sundi3yansyah@library:~/github$ touch add-file.md
  26. sundi3yansyah@library:~/github$ mv add-file.md Kontribusi-Repo/
  27. sundi3yansyah@library:~/github$ cd Kontribusi-Repo/
  28. sundi3yansyah@library:~/github/Kontribusi-Repo$ ls
  29. add-file.md README.md
  30. sundi3yansyah@library:~/github/Kontribusi-Repo$ subl add-file.md
  31. sundi3yansyah@library:~/github/Kontribusi-Repo$ git status
  32. On branch master
  33. Your branch is up-to-date with 'origin/master'.
  34. Untracked files:
  35. (use "git add <file>..." to include in what will be committed)
  36.  
  37. add-file.md
  38.  
  39. nothing added to commit but untracked files present (use "git add" to track)
  40. sundi3yansyah@library:~/github/Kontribusi-Repo$ git branch -v
  41. * master 0853969 first commit
  42. sundi3yansyah@library:~/github/Kontribusi-Repo$ git remote -v
  43. origin https://github.com/SunDi3yansyah/Kontribusi-Repo (fetch)
  44. origin https://github.com/SunDi3yansyah/Kontribusi-Repo (push)
  45. sundi3yansyah@library:~/github/Kontribusi-Repo$ # ini kita masukkan
  46. sundi3yansyah@library:~/github/Kontribusi-Repo$ git add add-file.md
  47. sundi3yansyah@library:~/github/Kontribusi-Repo$ git commit -m 'add file'
  48. [master 2b1457b] add file
  49. 1 file changed, 1 insertion(+)
  50. create mode 100644 add-file.md
  51. sundi3yansyah@library:~/github/Kontribusi-Repo$ git push origin master # origin itu nama remote nya dan master itu nama branch nyaUsername for 'https://github.com': sundi3yansyah
  52. Password for 'https://sundi3yansyah@github.com':
  53. Counting objects: 3, done.
  54. Delta compression using up to 4 threads.
  55. Compressing objects: 100% (3/3), done.
  56. Writing objects: 100% (3/3), 339 bytes | 0 bytes/s, done.
  57. Total 3 (delta 0), reused 0 (delta 0)
  58. To https://github.com/SunDi3yansyah/Kontribusi-Repo
  59. 0853969..2b1457b master -> master
  60. sundi3yansyah@library:~/github/Kontribusi-Repo$ git status
  61. On branch master
  62. Your branch is up-to-date with 'origin/master'.
  63. Untracked files:
  64. (use "git add <file>..." to include in what will be committed)
  65.  
  66. o
  67. x
  68.  
  69. nothing added to commit but untracked files present (use "git add" to track)
  70. sundi3yansyah@library:~/github/Kontribusi-Repo$ git add --all
  71. sundi3yansyah@library:~/github/Kontribusi-Repo$ git commit -m 'asdsda'
  72. [master 64955aa] asdsda
  73. 2 files changed, 0 insertions(+), 0 deletions(-)
  74. create mode 100644 o
  75. create mode 100644 x
  76. sundi3yansyah@library:~/github/Kontribusi-Repo$ git push
  77. warning: push.default is unset; its implicit value has changed in
  78. Git 2.0 from 'matching' to 'simple'. To squelch this message
  79. and maintain the traditional behavior, use:
  80.  
  81. git config --global push.default matching
  82.  
  83. To squelch this message and adopt the new behavior now, use:
  84.  
  85. git config --global push.default simple
  86.  
  87. When push.default is set to 'matching', git will push local branches
  88. to the remote branches that already exist with the same name.
  89.  
  90. Since Git 2.0, Git defaults to the more conservative 'simple'
  91. behavior, which only pushes the current branch to the corresponding
  92. remote branch that 'git pull' uses to update the current branch.
  93.  
  94. See 'git help config' and search for 'push.default' for further information.
  95. (the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
  96. 'current' instead of 'simple' if you sometimes use older versions of Git)
  97.  
  98. Username for 'https://github.com': sundi3yansyah
  99. Password for 'https://sundi3yansyah@github.com':
  100. Counting objects: 3, done.
  101. Delta compression using up to 4 threads.
  102. Compressing objects: 100% (2/2), done.
  103. Writing objects: 100% (3/3), 308 bytes | 0 bytes/s, done.
  104. Total 3 (delta 0), reused 0 (delta 0)
  105. To https://github.com/SunDi3yansyah/Kontribusi-Repo
  106. 2b1457b..64955aa master -> master
  107. sundi3yansyah@library:~/github/Kontribusi-Repo$ ssh -T git@github.com
  108. Hi SunDi3yansyah! You've successfully authenticated, but GitHub does not provide shell access.
  109. sundi3yansyah@library:~/github/Kontribusi-Repo$ ls
  110. add-file.md o README.md x
  111. sundi3yansyah@library:~/github/Kontribusi-Repo$
  112. sundi3yansyah@library:~/github/Kontribusi-Repo$ ls
  113. add-file.md o README.md x
  114. sundi3yansyah@library:~/github/Kontribusi-Repo$
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147. sundi3yansyah@library:~/github/Kontribusi-Repo$ ls
  148. add-file.md o README.md x
  149. sundi3yansyah@library:~/github/Kontribusi-Repo$ git status
  150. On branch master
  151. Your branch is up-to-date with 'origin/master'.
  152. nothing to commit, working directory clean
  153. sundi3yansyah@library:~/github/Kontribusi-Repo$ git pull
  154. Already up-to-date.
  155. sundi3yansyah@library:~/github/Kontribusi-Repo$ git pull https://github.com/DeVoresyah/Kontribusi-Repo
  156. remote: Counting objects: 5, done.
  157. remote: Compressing objects: 100% (4/4), done.
  158. remote: Total 5 (delta 1), reused 5 (delta 1), pack-reused 0
  159. Unpacking objects: 100% (5/5), done.
  160. From https://github.com/DeVoresyah/Kontribusi-Repo
  161. * branch HEAD -> FETCH_HEAD
  162. Updating 64955aa..cb26a46
  163. Fast-forward
  164. new-file01.dat | 0
  165. new-file02.dat | 0
  166. 2 files changed, 0 insertions(+), 0 deletions(-)
  167. create mode 100644 new-file01.dat
  168. create mode 100644 new-file02.dat
  169. sundi3yansyah@library:~/github/Kontribusi-Repo$ git remote add https://github.com/DeVoresyah/Kontribusi-Repo
  170. usage: git remote add [<options>] <name> <url>
  171.  
  172. -f, --fetch fetch the remote branches
  173. --tags import all tags and associated objects when fetching
  174. or do not fetch any tag at all (--no-tags)
  175. -t, --track <branch> branch(es) to track
  176. -m, --master <branch>
  177. master branch
  178. --mirror[=<push|fetch>]
  179. set up remote as a mirror to push to or fetch from
  180.  
  181. sundi3yansyah@library:~/github/Kontribusi-Repo$ git remote add ruly https://github.com/DeVoresyah/Kontribusi-Repo
  182. sundi3yansyah@library:~/github/Kontribusi-Repo$ git remote -v
  183. origin https://github.com/SunDi3yansyah/Kontribusi-Repo (fetch)
  184. origin https://github.com/SunDi3yansyah/Kontribusi-Repo (push)
  185. ruly https://github.com/DeVoresyah/Kontribusi-Repo (fetch)
  186. ruly https://github.com/DeVoresyah/Kontribusi-Repo (push)
  187. sundi3yansyah@library:~/github/Kontribusi-Repo$ git add .
  188. sundi3yansyah@library:~/github/Kontribusi-Repo$ git commit -m 'xxxxxxxxxxxxx'
  189. [master d4ca0f3] xxxxxxxxxxxxx
  190. 1 file changed, 0 insertions(+), 0 deletions(-)
  191. create mode 100644 xxxxxxxxxxxxxxxxxxxxxxxx
  192. sundi3yansyah@library:~/github/Kontribusi-Repo$ git push origin master
  193. Username for 'https://github.com': sundi3yansyah
  194. Password for 'https://sundi3yansyah@github.com':
  195. Counting objects: 7, done.
  196. Delta compression using up to 4 threads.
  197. Compressing objects: 100% (7/7), done.
  198. Writing objects: 100% (7/7), 951 bytes | 0 bytes/s, done.
  199. Total 7 (delta 2), reused 0 (delta 0)
  200. To https://github.com/SunDi3yansyah/Kontribusi-Repo
  201. 64955aa..d4ca0f3 master -> master
  202. sundi3yansyah@library:~/github/Kontribusi-Repo$ vi add-file.md
  203. ycm_client_support.[so|pyd|dll] and ycm_core.[so|pyd|dll] not detected; you need to compile YCM before using it. Read the docs!
  204. Press ENTER or type command to continue
  205. sundi3yansyah@library:~/github/Kontribusi-Repo$ git tag -a v0.1 -m "wow versi 1 0.1 misalnya"
  206. sundi3yansyah@library:~/github/Kontribusi-Repo$ git tag
  207. v0.1
  208. sundi3yansyah@library:~/github/Kontribusi-Repo$ git branch -v
  209. * master d4ca0f3 xxxxxxxxxxxxx
  210. sundi3yansyah@library:~/github/Kontribusi-Repo$ git add .
  211. sundi3yansyah@library:~/github/Kontribusi-Repo$ git commit -m 'asds'
  212. On branch master
  213. Your branch is up-to-date with 'origin/master'.
  214. nothing to commit, working directory clean
  215. sundi3yansyah@library:~/github/Kontribusi-Repo$ git push origin v0.1
  216. Username for 'https://github.com': sundi3yansyah
  217. Password for 'https://sundi3yansyah@github.com':
  218. Counting objects: 1, done.
  219. Writing objects: 100% (1/1), 176 bytes | 0 bytes/s, done.
  220. Total 1 (delta 0), reused 0 (delta 0)
  221. To https://github.com/SunDi3yansyah/Kontribusi-Repo
  222. * [new tag] v0.1 -> v0.1
  223. sundi3yansyah@library:~/github/Kontribusi-Repo$ history
  224. 1041 git status
  225. 1042 cd
  226. 1043 sudo apt-get update
  227. 1044 sudo apt-get upgrade
  228. 1045 atom
  229. 1046 stom
  230. 1047 atom
  231. 1048 which atom
  232. 1049 ls
  233. 1050 rm -rf testing
  234. 1051 curl http://get.sensiolabs.org/php-cs-fixer.phar -o php-cs-fixer
  235. 1052 ls
  236. 1053 cat run.php
  237. 1054 rm run.php
  238. 1055 ls
  239. 1056 sudo chmod a+x php-cs-fixer
  240. 1057 sudo mv php-cs-fixer /usr/local/bin/php-cs-fixer
  241. 1058 cd openshift/FinalProjectPWL/
  242. 1059 git status
  243. 1060 cd
  244. 1061 apm install linter
  245. 1062 pear -v
  246. 1063 pear --version
  247. 1064 atom ~/.atom/config.cson
  248. 1065 apm install linter-php
  249. 1066 atom ~/.atom/config.cson
  250. 1067 which php
  251. 1068 apm install autoprefixer
  252. 1069 apm install atom-html-preview
  253. 1070 pear install PHP_CodeSniffer
  254. 1071 which pear
  255. 1072 which php
  256. 1073 sudo pear install PHP_CodeSniffer
  257. 1074 pear channel-update pear.php.net
  258. 1075 sudo pear channel-update pear.php.net
  259. 1076 pear install PHP_CodeSniffer
  260. 1077 whoami
  261. 1078 exit
  262. 1079 ls
  263. 1080 cd app
  264. 1081 ls
  265. 1082 cd logs/
  266. 1083 ls
  267. 1084 rm *.php
  268. 1085 ls
  269. 1086 exit
  270. 1087 ls
  271. 1088 apm install linter-phpcs
  272. 1089 apm install semantic-ui
  273. 1090 apm install icon-fonts
  274. 1091 apm install tag
  275. 1092 apm install autoclose-html
  276. 1093 apm install atom-terminal
  277. 1094 subl openshift
  278. 1095 exit
  279. 1096 cd ..
  280. 1097 cd ../openshift/FinalProjectPWL/
  281. 1098 git rm -rf . --cached
  282. 1099 git add .
  283. 1100 git commit -m 'miss ignore'
  284. 1101 git push github master
  285. 1102 git push rh master
  286. 1103 ls
  287. 1104 cat openshift.sh
  288. 1105 chmod 644 openshift.sh
  289. 1106 ls
  290. 1107 mv openshift.sh openshift
  291. 1108 subl .gitignore
  292. 1109 git rm -rf . --cached
  293. 1110 git add .
  294. 1111 git commit -m 'miss ignore'
  295. 1112 git push rh master
  296. 1113 ls
  297. 1114 ./push.sh
  298. 1115 ssh 5654de762d527172ca00006a@pwl-cahyadi3yansyah.rhcloud.com
  299. 1116 git rm -rf . --cached
  300. 1117 ./push.sh
  301. 1118 exit
  302. 1119 subl bitbucket/online-shop-reseler/
  303. 1120 cd bitbucket/online-shop-reseler/
  304. 1121 touch .gitignore
  305. 1122 git status
  306. 1123 git branch -v
  307. 1124 git status
  308. 1125 git rm -rf . --cached
  309. 1126 git add plan.note
  310. 1127 git commit -m 'add plan note'
  311. 1128 bower install bcit-ci/CodeIgniter#3.3.3 --save
  312. 1129 bower install bcit-ci/CodeIgniter#3.0.3 --save
  313. 1130 npm install -g bower
  314. 1131 bower install admin-lte --save
  315. 1132 find . -type d | while read folder ; do chmod 755 "$folder" ; done
  316. 1133 find . -type f | while read file ; do chmod 644 "$file" ; done
  317. 1134 mv application app
  318. 1135 mv system sys
  319. 1136 git rm -rf . --cached
  320. 1137 git status
  321. 1138 git add app sys index.php
  322. 1139 git commit -m 'add framework'
  323. 1140 git status
  324. 1141 git log
  325. 1142 chmod 777 app/logs/ -R
  326. 1143 git status
  327. 1144 cd ..
  328. 1145 cd online-shop-reseller
  329. 1146 subl .
  330. 1147 git status
  331. 1148 git add .gitignore
  332. 1149 git rm -rf . --cached
  333. 1150 git status
  334. 1151 git add sys reseller master index.php
  335. 1152 git commit -m 'add framework'
  336. 1153 git status
  337. 1154 git add bower.json
  338. 1155 git commit -m 'update bower'
  339. 1156 git add .
  340. 1157 git commit -m 'clean commit'
  341. 1158 git push origin master
  342. 1159 git status
  343. 1160 subl /etc/nginx/sites-available/default.conf
  344. 1161 subl /etc/hosts
  345. 1162 subl /etc/nginx/sites-available/default.conf
  346. 1163 sudo service nginx restart
  347. 1164 git branch -v
  348. 1165 git branch -d dev
  349. 1166 git branch -v
  350. 1167 git status
  351. 1168 git add master/ reseller/
  352. 1169 git commit -m 'config modular ext'
  353. 1170 git push origin master
  354. 1171 ls
  355. 1172 chmod u+x push
  356. 1173 ls
  357. 1174 ./push
  358. 1175 exit
  359. 1176 cd
  360. 1177 cd /usr/share/nginx/html/
  361. 1178 ls
  362. 1179 cd gardatama_baru/
  363. 1180 git pull
  364. 1181 exit
  365. 1182 nano .gitignore
  366. 1183 exit
  367. 1184 ls
  368. 1185 cat .gitignore
  369. 1186 ls master/
  370. 1187 ls master/app/
  371. 1188 exit
  372. 1189 cd bitbucket/
  373. 1190 cd libscode/
  374. 1191 git status
  375. 1192 cd ../sunblueV2/
  376. 1193 cd ..
  377. 1194 ls
  378. 1195 cd SunDi3yansyah/
  379. 1196 git status
  380. 1197 git branch -v
  381. 1198 cd ..
  382. 1199 git clone git@bitbucket.org:SunDi3yansyah/yiiblog.git
  383. 1200 ls
  384. 1201 cd online-shop-reseller/
  385. 1202 bower install IronSummitMedia/startbootstrap-sb-admin-2#v1.0.8 --save
  386. 1203 ./push
  387. 1204 ls
  388. 1205 cd bower_components/
  389. 1206 find . -type d | while read folder ; do chmod 755 "$folder" ; done
  390. 1207 find . -type f | while read file ; do chmod 644 "$file" ; done
  391. 1208 cd ..
  392. 1209 git status
  393. 1210 ./push
  394. 1211 git rm -rf . --cached
  395. 1212 ./push
  396. 1213 exit
  397. 1214 echo 'Question' | sha1sum
  398. 1215 echo 'question' | sha1sum
  399. 1216 echo 'a302344c485385d66b3c1736be5213fb07e7fbb8' | sha1sum
  400. 1217 echo '8f187dcecbf3db0ddbe8a8c45858bb9db5483828' | sha1sum
  401. 1218 echo '07627a3775b8c20cf096f9e49b4e45f26ec819d9' | sha1sum
  402. 1219 echo '8b057c2097814a498c6debb1708a45b399b2de35' | sha1sum
  403. 1220 subl /etc/nginx/sites-available/default.conf
  404. 1221 cd openshift/FinalProjectPWL/
  405. 1222 git add .
  406. 1223 git rm -rf . --cached
  407. 1224 git add .
  408. 1225 git commit -m 'push all'
  409. 1226 ./push.sh
  410. 1227 sudo service nginx restart
  411. 1228 sudo service mysql restart
  412. 1229 sudo service php5-fpm restart
  413. 1230 sudo apt-get update
  414. 1231 sudo service varnish stop
  415. 1232 subl /etc/nginx/sites-available/default.conf
  416. 1233 exit
  417. 1234 ssh 5654de762d527172ca00006a@pwl-cahyadi3yansyah.rhcloud.com
  418. 1235 exit
  419. 1236 php -i
  420. 1237 php -a
  421. 1238 exit
  422. 1239 cd openshift/FinalProjectPWL/
  423. 1240 ./push.sh
  424. 1241 git rm -rf . --cached
  425. 1242 ./push
  426. 1243 mysql -u root -p
  427. 1244 sudo apt-get update
  428. 1245 cd bitbucket/online-shop-reseller/master/
  429. 1246 ls
  430. 1247 chmod -R 777 files
  431. 1248 echo "dompet" | sha1sum
  432. 1249 chmod -R 777 files
  433. 1250 cd ..
  434. 1251 git status
  435. 1252 ls
  436. 1253 ./push
  437. 1254 git branch -v
  438. 1255 cd master/
  439. 1256 ls
  440. 1257 chmod 777 files -R
  441. 1258 curl -I http://master/
  442. 1259 curl -i http://master/
  443. 1260 curl -I http://master/
  444. 1261 cd ..
  445. 1262 git branch -v
  446. 1263 bower install dropzonejs --save
  447. 1264 bower install dropzone --save
  448. 1265 npm install -g bower
  449. 1266 cd master/
  450. 1267 ls
  451. 1268 chmod 777 files -R
  452. 1269 sudo chmod 777 files -R
  453. 1270 ls
  454. 1271 cd ..
  455. 1272 ls
  456. 1273 ./push
  457. 1274 cd master/assets/
  458. 1275 cd master/
  459. 1276 ls
  460. 1277 cd dropzone/
  461. 1278 find . -type f | while read file ; do chmod 644 "$file" ; done
  462. 1279 cd ../../..
  463. 1280 cd ..
  464. 1281 #find . -type f | while read file ; do chmod 644 "$file" ; done
  465. 1282 cd master/assets/master/dropzone/
  466. 1283 find . -type f | while read file ; do chmod 644 "$file" ; done
  467. 1284 exit
  468. 1285 sudo apt-get update
  469. 1286 sudo apt-get upgrade
  470. 1287 cd bitbucket/online-shop-reseller/
  471. 1288 git status
  472. 1289 ./push
  473. 1290 cd bower_components/startbootstrap-sb-admin-2/
  474. 1291 find . -type d | while read folder ; do chmod 755 "$folder" ; done
  475. 1292 find . -type f | while read file ; do chmod 644 "$file" ; done
  476. 1293 cd ../..
  477. 1294 cd master/
  478. 1295 ls
  479. 1296 cd assets/reseller/
  480. 1297 ls
  481. 1298 cd img/
  482. 1299 wget https://www.iconfinder.com/icons/652578/download/png/128
  483. 1300 ls
  484. 1301 rm 128
  485. 1302 ls
  486. 1303 wget https://www.iconfinder.com/icons/652578/download/png/128
  487. 1304 ls
  488. 1305 chmod 644 logo.png
  489. 1306 gem install github-pages
  490. 1307 sudo gem install github-pages
  491. 1308 exit
  492. 1309 ssh 5654de762d527172ca00006a@pwl-cahyadi3yansyah.rhcloud.com
  493. 1310 exit
  494. 1311 sudo apt-get update
  495. 1312 sudo apt-get upgrade
  496. 1313 php -a
  497. 1314 cd openshift/FinalProjectPWL/
  498. 1315 git status
  499. 1316 ls
  500. 1317 git rm -rf . --cached
  501. 1318 ./push
  502. 1319 git rm -rf . --cached
  503. 1320 ./push
  504. 1321 git rm -rf . --cached
  505. 1322 ./push
  506. 1323 exit
  507. 1324 cd /media/sundi3yansyah/Lorem ipsum dolor sit amet/Server/nginx
  508. 1325 cd /media/sundi3yansyah/Lorem\ ipsum\ dolor\ sit\ amet/
  509. 1326 cd Server/nginx/
  510. 1327 git status
  511. 1328 exit
  512. 1329 php -a
  513. 1330 cd openshift/FinalProjectPWL/assets/images/
  514. 1331 ls
  515. 1332 chmod 644 user-default.png
  516. 1333 exit
  517. 1334 subl /etc/php5/fpm/php.ini
  518. 1335 exit
  519. 1336 subl
  520. 1337 exit
  521. 1338 sudo apt-get update && sudo apt-get upgrade
  522. 1339 php -v
  523. 1340 subl /etc/nginx/sites-available/default.conf
  524. 1341 subl /etc/nginx/nginx.conf
  525. 1342 subl /etc/php5/fpm/pool.d/www.conf
  526. 1343 ls /var/run/
  527. 1344 sudo apt-get install libt1-dev
  528. 1345 sudo service nginx restart
  529. 1346 ls
  530. 1347 ./push
  531. 1348 mysql -u root -p
  532. 1349 ./push
  533. 1350 git rm -rf . --cached
  534. 1351 ./push
  535. 1352 exit
  536. 1353 sudo service nginx restart
  537. 1354 sudo service php5-fpm restart
  538. 1355 subl /etc/php5/fpm/pool.d/www.conf
  539. 1356 sudo service php5-fpm restart
  540. 1357 sudo service nginx restart
  541. 1358 cd /var/www/html/
  542. 1359 ls
  543. 1360 cd pwl
  544. 1361 ls
  545. 1362 cd ..
  546. 1363 ls
  547. 1364 cd kampoeng_ci/
  548. 1365 ls
  549. 1366 cat bower.json
  550. 1367 cd ..
  551. 1368 ls
  552. 1369 subl phpmyadmin/config.inc.php
  553. 1370 wget https://files.phpmyadmin.net/phpMyAdmin/4.5.2/phpMyAdmin-4.5.2-all-languages.zip
  554. 1371 ls
  555. 1372 unzip phpMyAdmin-4.5.2-all-languages.zip
  556. 1373 ls
  557. 1374 rm phpmyadmin -rf
  558. 1375 mv phpMyAdmin-4.5.2-all-languages phpmyadmin
  559. 1376 chmod 755 phpmyadmin
  560. 1377 cd phpmyadmin/
  561. 1378 find . -type d | while read folder ; do chmod 755 "$folder" ; done
  562. 1379 find . -type f | while read file ; do chmod 644 "$file" ; done
  563. 1380 ls
  564. 1381 chmod 777 libraries/Config.class.php
  565. 1382 cd
  566. 1383 cd bitbucket/online-shop-reseller/
  567. 1384 git status
  568. 1385 cat push
  569. 1386 ./push
  570. 1387 curl -i http://landa.co.id/
  571. 1388 curl -l http://landa.co.id/
  572. 1389 curl -I http://landa.co.id/
  573. 1390 cd master/
  574. 1391 ls
  575. 1392 cd assets/
  576. 1393 ls
  577. 1394 cd public/
  578. 1395 ls
  579. 1396 cd img/
  580. 1397 ls
  581. 1398 find . -type d | while read folder ; do chmod 755 "$folder" ; done
  582. 1399 find . -type f | while read file ; do chmod 644 "$file" ; done
  583. 1400 cd ../../..
  584. 1401 cd ../
  585. 1402 ls
  586. 1403 cd bower_components/
  587. 1404 ls
  588. 1405 git clone https://github.com/olton/Metro-UI-CSS
  589. 1406 ls
  590. 1407 cd metro/
  591. 1408 find . -type d | while read folder ; do chmod 755 "$folder" ; done
  592. 1409 find . -type f | while read file ; do chmod 644 "$file" ; done
  593. 1410 cd ..
  594. 1411 chmod 755 metro/
  595. 1412 cd /home/sundi3yansyah/openshift/FinalProjectPWL/design/
  596. 1413 chmod 755 metro/
  597. 1414 cd metro/
  598. 1415 find . -type d | while read folder ; do chmod 755 "$folder" ; done
  599. 1416 find . -type f | while read file ; do chmod 644 "$file" ; done
  600. 1417 cd
  601. 1418 cd bitbucket/online-shop-reseller/
  602. 1419 cd master/assets/public/
  603. 1420 ls
  604. 1421 cd img/
  605. 1422 ls
  606. 1423 chmod 644 preloader.gif
  607. 1424 exit
  608. 1425 cd openshift/FinalProjectPWL/
  609. 1426 git status
  610. 1427 ./push
  611. 1428 cd ../..
  612. 1429 cd bitbucket/online-shop-reseller/
  613. 1430 git status
  614. 1431 ./push
  615. 1432 exit
  616. 1433 sudo apt-get update
  617. 1434 sudo apt-get upgrade
  618. 1435 exit
  619. 1436 cd /dev/
  620. 1437 ls
  621. 1438 subl urandom
  622. 1439 ls -al
  623. 1440 exit
  624. 1441 cd /home/sundi3yansyah/.config/sublime-text-3
  625. 1442 cd Installed\ Packages/
  626. 1443 tree
  627. 1444 cd ..
  628. 1445 ls
  629. 1446 cd -
  630. 1447 tree -f
  631. 1448 tree -d
  632. 1449 cd ..
  633. 1450 tree Installed\ Packages/
  634. 1451 ls
  635. 1452 tree Packages/
  636. 1453 tree -d
  637. 1454 tree -d Packages/
  638. 1455 tree Packages/
  639. 1456 exit
  640. 1457 tree Packages/
  641. 1458 cd
  642. 1459 cd github/sundi3yansyah.com/
  643. 1460 ls
  644. 1461 git branch -v
  645. 1462 git status
  646. 1463 git add .
  647. 1464 git commit -m 'lorem ipsum dolor sit amet'
  648. 1465 git push origin repo
  649. 1466 git checkout source
  650. 1467 git status
  651. 1468 ls
  652. 1469 git checkout master
  653. 1470 git branch -v
  654. 1471 git checkout source
  655. 1472 git branch -d master
  656. 1473 git checkout source
  657. 1474 git branch -v
  658. 1475 git checkout repo
  659. 1476 ./deploy.sh
  660. 1477 exit
  661. 1478 curl -i http://pwl/home/test
  662. 1479 cd openshift/FinalProjectPWL/
  663. 1480 ls
  664. 1481 ./push
  665. 1482 cd assets/images/
  666. 1483 chmod 644 404-*
  667. 1484 ./push
  668. 1485 cd ..
  669. 1486 ./push
  670. 1487 git rm -rf . --cached
  671. 1488 ./push
  672. 1489 echo 'sundi3yansyah.com' | md5sum
  673. 1490 echo 'sundi3yansyah.com' | sha1sum
  674. 1491 ./push
  675. 1492 sudo service nginx restart
  676. 1493 ./push
  677. 1494 exit
  678. 1495 subl /etc/nginx/sites-available/default.conf
  679. 1496 exit
  680. 1497 cd /usr/share/
  681. 1498 ls
  682. 1499 cd php5/
  683. 1500 ls
  684. 1501 cd ..
  685. 1502 ls
  686. 1503 cd ../lib/
  687. 1504 ls
  688. 1505 cd php5/
  689. 1506 ls
  690. 1507 cd build/
  691. 1508 ls
  692. 1509 cd ..
  693. 1510 ls
  694. 1511 cd ..
  695. 1512 ls
  696. 1513 cd ..
  697. 1514 which php
  698. 1515 cd build/
  699. 1516 ls
  700. 1517 exit
  701. 1518 sudo apt-get update
  702. 1519 sudo apt-get upgrade
  703. 1520 cd /build/
  704. 1521 cd
  705. 1522 cd Downloads/
  706. 1523 mv php-7.0.1.tar.gz /build/
  707. 1524 cd /build/
  708. 1525 ls
  709. 1526 mkdir php7
  710. 1527 mv php-7.0.1.tar.gz php7
  711. 1528 cd php7/
  712. 1529 tar -zxvf php-7.0.1.tar.gz
  713. 1530 ls
  714. 1531 mv php-7.0.1.tar.gz ../
  715. 1532 ls
  716. 1533 cd ..
  717. 1534 ls
  718. 1535 cd php7
  719. 1536 ls
  720. 1537 mv php-7.0.1 ../
  721. 1538 ls
  722. 1539 cd ..
  723. 1540 ls
  724. 1541 rm php7 -rf
  725. 1542 ls
  726. 1543 mv php-7.0.1 php7
  727. 1544 ls
  728. 1545 cd php7
  729. 1546 ls
  730. 1547 cd build/
  731. 1548 ls
  732. 1549 cd ..
  733. 1550 ls
  734. 1551 sudo apt-get install libxml2-dev
  735. 1552 sudo apt-get install libmysqlclient-dev
  736. 1553 which mysql-client
  737. 1554 mysql-client --version
  738. 1555 ls
  739. 1556 cd
  740. 1557 cd /usr/share/nginx/html/
  741. 1558 ls
  742. 1559 cd gardatama_baru/
  743. 1560 git pull
  744. 1561 subl /etc/nginx/sites-available/default.conf
  745. 1562 cd
  746. 1563 cd openshift/FinalProjectPWL/
  747. 1564 ls
  748. 1565 ./push
  749. 1566 git rm -rf . --cached
  750. 1567 ./push
  751. 1568 ssh 5654de762d527172ca00006a@pwl-cahyadi3yansyah.rhcloud.com
  752. 1569 git status
  753. 1570 ssh 5654de762d527172ca00006a@pwl-cahyadi3yansyah.rhcloud.com
  754. 1571 ./push
  755. 1572 exit
  756. 1573 subl /etc/nginx/sites-available/default.conf
  757. 1574 subl /etc/hosts
  758. 1575 sudo service nginx restart
  759. 1576 nginx -t
  760. 1577 subl /etc/nginx/sites-available/default.conf
  761. 1578 sudo service nginx restart
  762. 1579 nginx -t
  763. 1580 subl /etc/nginx/nginx.conf
  764. 1581 sudo service nginx restart
  765. 1582 nginx -t
  766. 1583 ls -al /var/log/
  767. 1584 ls -al /var/log/nginx/
  768. 1585 cd /var/log
  769. 1586 ls
  770. 1587 chown www-data:www-data nginx/
  771. 1588 sudo chown www-data:www-data nginx/
  772. 1589 sudo service nginx restart
  773. 1590 cd
  774. 1591 cd Skripsi/smansaka
  775. 1592 ls
  776. 1593 cd statics/
  777. 1594 ls
  778. 1595 cd ..
  779. 1596 git status
  780. 1597 git remote -v
  781. 1598 curl -I github.com
  782. 1599 curl -I https://github.com
  783. 1600 sudo apt-get upgrade
  784. 1601 cd openshift/FinalProjectPWL/
  785. 1602 ls
  786. 1603 git status
  787. 1604 ./commit
  788. 1605 sudo apt-get upgrade
  789. 1606 ./push
  790. 1607 lsusb -l
  791. 1608 lsusb
  792. 1609 exit
  793. 1610 fdisk -l
  794. 1611 sudo fdisk -l
  795. 1612 fdisk -l
  796. 1613 sudo fdisk -l
  797. 1614 exit
  798. 1615 cd /var/www/html/
  799. 1616 chmod 755 metro-ui/
  800. 1617 cd metro-ui/
  801. 1618 find . -type d | while read folder ; do chmod 755 "$folder" ; done
  802. 1619 find . -type f | while read file ; do chmod 644 "$file" ; done
  803. 1620 exit
  804. 1621 cd
  805. 1622 cd github/SunQA/
  806. 1623 ./push
  807. 1624 git branch -v
  808. 1625 ./push
  809. 1626 exit
  810. 1627 cd openshift/FinalProjectPWL/
  811. 1628 ./push
  812. 1629 sudo service nginx restart
  813. 1630 ./push
  814. 1631 chmod 644 assets/images/QAicon.png
  815. 1632 ./push
  816. 1633 git branch -v
  817. 1634 ./push
  818. 1635 git branch -v
  819. 1636 git checkout -b FinalProjectPWL
  820. 1637 git branch -v
  821. 1638 git checkout master
  822. 1639 git status
  823. 1640 git branch -v
  824. 1641 git push --all
  825. 1642 git remote -v
  826. 1643 git remote rename github origin
  827. 1644 git remote set-url origin git@github.com:SunDi3yansyah/SunQA.git
  828. 1645 cd
  829. 1646 subl /etc/nginx/sites-available/default.conf
  830. 1647 subl /etc/hosts
  831. 1648 sudo service nginx restart
  832. 1649 chmod 755 github/
  833. 1650 cd github/
  834. 1651 chmod 755 SunQA/
  835. 1652 cd SunQA/
  836. 1653 git status
  837. 1654 git rm -rf . --cached
  838. 1655 ./push
  839. 1656 git remote -v
  840. 1657 git branch -v
  841. 1658 ./push
  842. 1659 git tag 0.0.1
  843. 1660 git tag -v
  844. 1661 git branch -
  845. 1662 git tag
  846. 1663 ./push
  847. 1664 git push origin 0.0.1
  848. 1665 ./push
  849. 1666 git push origin 0.0.1
  850. 1667 git branch -v
  851. 1668 ./push
  852. 1669 git status
  853. 1670 git branch -v
  854. 1671 git remote -v
  855. 1672 git tag
  856. 1673 git status
  857. 1674 ./push
  858. 1675 git tag
  859. 1676 git checkout 0.0.1
  860. 1677 git status
  861. 1678 git branch -v
  862. 1679 git checkout master
  863. 1680 git status
  864. 1681 git log
  865. 1682 git branch -v
  866. 1683 git merge 0.0.1
  867. 1684 git push origin 0.0.1
  868. 1685 git checkout 0.0.1
  869. 1686 git hist
  870. 1687 git checkout master
  871. 1688 git hist
  872. 1689 git checkout 0.0.1
  873. 1690 git merge master
  874. 1691 git status
  875. 1692 git checkout master
  876. 1693 git status
  877. 1694 git log
  878. 1695 git checkout 0.0.1
  879. 1696 git add .
  880. 1697 git commit -m 'add from master'
  881. 1698 git push origin 0.0.1
  882. 1699 git log
  883. 1700 git checkout master
  884. 1701 git log
  885. 1702 git checkout 0.0.1
  886. 1703 git merge master
  887. 1704 git add .
  888. 1705 git commit -m 'add from master'
  889. 1706 git push origin 0.0.1
  890. 1707 git checkout master
  891. 1708 git add .
  892. 1709 ./push
  893. 1710 git add .
  894. 1711 git commit -m 'add'
  895. 1712 git push origin 0.0.1
  896. 1713 git merge master 0.0.1
  897. 1714 git push --all
  898. 1715 git push origin --tags
  899. 1716 git status
  900. 1717 git log 0.0.1
  901. 1718 git checkout 0.0.1
  902. 1719 git log
  903. 1720 git merge master
  904. 1721 git checkout master
  905. 1722 git checkout 0.0.1
  906. 1723 git merge master
  907. 1724 git remote -v
  908. 1725 git branch -v
  909. 1726 git push origin 0.0.1
  910. 1727 git status
  911. 1728 git push --tags
  912. 1729 git push origin 0.0.1
  913. 1730 git push --follow-tags
  914. 1731 git --version
  915. 1732 git push origin HEAD:master
  916. 1733 git push origin 0.0.1:master
  917. 1734 git branch -v
  918. 1735 git pull
  919. 1736 git pull origin master
  920. 1737 git checkout master
  921. 1738 git status
  922. 1739 git checkout 0.0.1
  923. 1740 git branch -v
  924. 1741 git status
  925. 1742 git log
  926. 1743 git merge master
  927. 1744 git push origin 0.0.1
  928. 1745 git push origin --tags
  929. 1746 git push --follow-tags
  930. 1747 git branch -v
  931. 1748 git checkout master
  932. 1749 git status
  933. 1750 git push --tags
  934. 1751 git push origin 0.0.1
  935. 1752 sudo apt-get update
  936. 1753 sudo apt-get upgrade
  937. 1754 cd
  938. 1755 cd bitbucket/online-shop-reseller/
  939. 1756 subl /etc/nginx/sites-available/default.conf
  940. 1757 subl /etc/hosts
  941. 1758 sudo service nginx restart
  942. 1759 cd /var/www/html/
  943. 1760 chmod 755 phpmyadmin/
  944. 1761 cd phpmyadmin/
  945. 1762 find . -type d | while read folder ; do chmod 755 "$folder" ; done
  946. 1763 find . -type f | while read file ; do chmod 644 "$file" ; done
  947. 1764 sudo apt-get install numix-plank-theme
  948. 1765 sudo apt-get update
  949. 1766 sudo apt-get install plank
  950. 1767 sudo apt-get install numix-plank-theme
  951. 1768 cd github/SunBlue-version-1/
  952. 1769 cd ..
  953. 1770 mv SunBlue-version-1 SunBlue
  954. 1771 cd SunBlue
  955. 1772 git remote -v
  956. 1773 git branch -v
  957. 1774 git remote -v
  958. 1775 git remote set-url origin git@github.com:SunDi3yansyah/SunBlue.git
  959. 1776 git remote -v
  960. 1777 ls
  961. 1778 mv SunBlue-version-1-theme.xml SunBlue.xml
  962. 1779 git add .
  963. 1780 git commit -m manage branch for 1 repo
  964. 1781 git push origin master
  965. 1782 git commit -m 'manage branch for 1 repo'
  966. 1783 git push origin master
  967. 1784 subl README.md
  968. 1785 git add .
  969. 1786 git commit -m 'readme'
  970. 1787 git push
  971. 1788 git pull origin gh-pages
  972. 1789 git branch -v
  973. 1790 git remote -v
  974. 1791 ls
  975. 1792 subl README.md
  976. 1793 git checkout -b gh-pages
  977. 1794 git branch -v
  978. 1795 rm . -rf
  979. 1796 rm * -rf
  980. 1797 ls
  981. 1798 git status
  982. 1799 git checkout master
  983. 1800 git status
  984. 1801 ls
  985. 1802 git branch -v
  986. 1803 git status
  987. 1804 git commit -a
  988. 1805 git add .
  989. 1806 git commit -m 'sorry'
  990. 1807 git push origin master
  991. 1808 git status
  992. 1809 subl README.md
  993. 1810 git branch -v
  994. 1811 git add .
  995. 1812 git commit -m 'readme'
  996. 1813 git push
  997. 1814 subl SunBlue.xml
  998. 1815 cd images/
  999. 1816 ls
  1000. 1817 cd sunblue/
  1001. 1818 ls
  1002. 1819 cd english/
  1003. 1820 ls
  1004. 1821 mv button-versi-kampoeng button
  1005. 1822 cd ../..
  1006. 1823 cd ..
  1007. 1824 git add .
  1008. 1825 git commit -m 'change dir name in lang'
  1009. 1826 git push
  1010. 1827 git checkout gh-pages
  1011. 1828 git status
  1012. 1829 ls
  1013. 1830 git branch -v
  1014. 1831 git rm * -rf
  1015. 1832 ls
  1016. 1833 git checkout master
  1017. 1834 ls
  1018. 1835 git branch -v
  1019. 1836 git checkout master
  1020. 1837 git branch -v
  1021. 1838 git commit -m 'test'
  1022. 1839 git status
  1023. 1840 ls
  1024. 1841 git checkout master
  1025. 1842 ls
  1026. 1843 git branch -v
  1027. 1844 git checkout gh-pages
  1028. 1845 subl .git/config
  1029. 1846 git branch -v
  1030. 1847 git pull origin gh-pages
  1031. 1848 ls
  1032. 1849 git pull https://github.com/SunDi3yansyah/SunBlue/tree/gh-pages
  1033. 1850 git pull https://github.com/SunDi3yansyah/SunBlue gh-pages
  1034. 1851 git add .
  1035. 1852 git commit -m 'test remove'
  1036. 1853 git checkout master
  1037. 1854 ls
  1038. 1855 git branch -v
  1039. 1856 git branch -d gh-pages
  1040. 1857 git branch -D gh-pages
  1041. 1858 git branch -v
  1042. 1859 ls
  1043. 1860 git checkout --orphan gh-pages
  1044. 1861 git branch -v
  1045. 1862 ls
  1046. 1863 git checkout master
  1047. 1864 git branch -v
  1048. 1865 git checkout gh-pages
  1049. 1866 ls
  1050. 1867 git branch -v
  1051. 1868 echo "My Page" > echo.html
  1052. 1869 git add echo.html
  1053. 1870 git commit -m 'add echo'
  1054. 1871 git push origin gh-pages
  1055. 1872 exit
  1056. 1873 cd bitbucket/online-shop-reseller/
  1057. 1874 git status
  1058. 1875 git branch -v
  1059. 1876 git remote -v
  1060. 1877 ./push
  1061. 1878 exit
  1062. 1879 echo 'logo' | dm5su
  1063. 1880 echo 'logo' | md5sum
  1064. 1881 echo 'dev' | sha1sum
  1065. 1882 cd bitbucket/online-shop-reseller/
  1066. 1883 ls
  1067. 1884 cd master/
  1068. 1885 ls
  1069. 1886 cd assets/
  1070. 1887 ls
  1071. 1888 cd public/
  1072. 1889 ls
  1073. 1890 cd img/
  1074. 1891 ls
  1075. 1892 find . -type d | while read folder ; do chmod 755 "$folder" ; done
  1076. 1893 find . -type f | while read file ; do chmod 644 "$file" ; done
  1077. 1894 ls
  1078. 1895 cd ../..
  1079. 1896 cd ..
  1080. 1897 php -a
  1081. 1898 cd $USER
  1082. 1899 cd $HOME
  1083. 1900 subl /etc/nginx/sites-available/default.conf
  1084. 1901 cd bitbucket/online-shop-reseller/
  1085. 1902 ls
  1086. 1903 ./push
  1087. 1904 exit
  1088. 1905 apt-get update # checking founder debian not found or not
  1089. 1906 sudo apt-get update # checking dead or not
  1090. 1907 sudo apt-get install --only-upgrade founder-deb
  1091. 1908 cd aaaaa
  1092. 1909 cd bitbucket/online-shop-reseller/
  1093. 1910 git status
  1094. 1911 ssh root@148.163.79.16
  1095. 1912 ssh root@107.150.10.103
  1096. 1913 ssh-keygen -f "/home/sundi3yansyah/.ssh/known_hosts" -R 107.150.10.103
  1097. 1914 ssh root@107.150.10.103
  1098. 1915 ssh root@188.166.247.112
  1099. 1916 ssh-keygen -f "/home/sundi3yansyah/.ssh/known_hosts" -R 188.166.247.112
  1100. 1917 ssh root@188.166.247.112
  1101. 1918 ssh root@198.12.108.247
  1102. 1919 ssh-keygen -f "/home/sundi3yansyah/.ssh/known_hosts" -R 198.12.108.247
  1103. 1920 ssh root@198.12.108.247
  1104. 1921 ssh root@206.253.167.162
  1105. 1922 ssh-keygen -f "/home/sundi3yansyah/.ssh/known_hosts" -R 206.253.167.162
  1106. 1923 ssh root@206.253.167.162
  1107. 1924 php -a
  1108. 1925 sudo service mysql restart
  1109. 1926 echo 'mau jawab apa aku tod? :v' | sha1sum
  1110. 1927 sudo apt-get upgrade
  1111. 1928 sudo apt-get dist-upgrade
  1112. 1929 cd master/
  1113. 1930 ls
  1114. 1931 cd assets/
  1115. 1932 ls
  1116. 1933 cd public/
  1117. 1934 ls
  1118. 1935 cd img/
  1119. 1936 ls
  1120. 1937 cd
  1121. 1938 date
  1122. 1939 exit
  1123. 1940 cd
  1124. 1941 exit
  1125. 1942 sudo apt-get upgrade && sudo apt-get dist-upgrade
  1126. 1943 exit
  1127. 1944 cd bitbucket/online-shop-reseller/
  1128. 1945 ls
  1129. 1946 git status
  1130. 1947 ./push
  1131. 1948 git rm -rf . --cached
  1132. 1949 ./push
  1133. 1950 exit
  1134. 1951 cd bitbucket/online-shop-reseller/
  1135. 1952 ls
  1136. 1953 git status
  1137. 1954 ./push
  1138. 1955 cd
  1139. 1956 ls
  1140. 1957 subl libscode
  1141. 1958 ./libscode
  1142. 1959 cd
  1143. 1960 exit
  1144. 1961 cd
  1145. 1962 ./libscode
  1146. 1963 cd bitbucket/online-shop-reseller/
  1147. 1964 ls
  1148. 1965 git status
  1149. 1966 ./push
  1150. 1967 cat ~/libscode
  1151. 1968 ./push
  1152. 1969 cat libscode
  1153. 1970 ./libscode
  1154. 1971 cat libscode
  1155. 1972 exit
  1156. 1973 echo 'company_name' | sha1pass
  1157. 1974 echo 'company_name' | sha1sum
  1158. 1975 cd bitbucket/online-shop-reseller/
  1159. 1976 ls
  1160. 1977 cd master/
  1161. 1978 ls
  1162. 1979 cd app
  1163. 1980 ls
  1164. 1981 find . -type d | while read folder ; do chmod 755 "$folder" ; done
  1165. 1982 find . -type f | while read file ; do chmod 644 "$file" ; done
  1166. 1983 cd ../..
  1167. 1984 ls
  1168. 1985 cd reseller/app/
  1169. 1986 find . -type d | while read folder ; do chmod 755 "$folder" ; done
  1170. 1987 find . -type f | while read file ; do chmod 644 "$file" ; done
  1171. 1988 cd ../..
  1172. 1989 ls
  1173. 1990 git status
  1174. 1991 ./push
  1175. 1992 cd
  1176. 1993 ls
  1177. 1994 cat libscode
  1178. 1995 ./libscode
  1179. 1996 cat libscode
  1180. 1997 ./libscode
  1181. 1998 cat libscode
  1182. 1999 exit
  1183. 2000 ./libscode
  1184. 2001 cd github/
  1185. 2002 ls
  1186. 2003 git clone https://github.com/DeVoresyah/OLShop
  1187. 2004 subl /etc/nginx/sites-available/default.conf
  1188. 2005 git clone https://github.com/SunDi3yansyah/Kontribusi-Repo
  1189. 2006 touch add-file.md
  1190. 2007 mv add-file.md Kontribusi-Repo/
  1191. 2008 cd Kontribusi-Repo/
  1192. 2009 ls
  1193. 2010 subl add-file.md
  1194. 2011 git status
  1195. 2012 git branch -v
  1196. 2013 git remote -v
  1197. 2014 # ini kita masukkan
  1198. 2015 git add add-file.md
  1199. 2016 git commit -m 'add file'
  1200. 2017 git push origin master # origin itu nama remote nya dan master itu nama branch nya
  1201. 2018 git status
  1202. 2019 git add --all
  1203. 2020 git commit -m 'asdsda'
  1204. 2021 git push
  1205. 2022 ssh -T git@github.com
  1206. 2023 ls
  1207. 2024 git status
  1208. 2025 git pull
  1209. 2026 git pull https://github.com/DeVoresyah/Kontribusi-Repo
  1210. 2027 git remote add https://github.com/DeVoresyah/Kontribusi-Repo
  1211. 2028 git remote add ruly https://github.com/DeVoresyah/Kontribusi-Repo
  1212. 2029 git remote -v
  1213. 2030 git add .
  1214. 2031 git commit -m 'xxxxxxxxxxxxx'
  1215. 2032 git push origin master
  1216. 2033 vi add-file.md
  1217. 2034 git tag -a v0.1 -m "wow versi 1 0.1 misalnya"
  1218. 2035 git tag
  1219. 2036 git branch -v
  1220. 2037 git add .
  1221. 2038 git commit -m 'asds'
  1222. 2039 git push origin v0.1
  1223. 2040 history
  1224. sundi3yansyah@library:~/github/Kontribusi-Repo$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement