東川印記

一本東川,笑看爭龍斗虎;寰茫兦者,度橫佰昧人生。

git的.gitignore规则

2014年5月6日星期二



.gitignore用来配置哪些不同步什么的,忽略



.gitignore跟.git同级目录

配置之后,把文件 git add,commit,push;
把要忽略的删掉,就是在本地删掉,commit然后push到server上;

android 的规则 https://github.com/github/gitignore/blob/master/Android.gitignore
规则可以自己配 custom

内容
  1. #ignore to git
  2. # Built application files
  3. *.apk
  4. *.ap_
  5. # Files for the Dalvik VM
  6. *.dex
  7. # Java class files
  8. *.class
  9. # Generated files
  10. bin/
  11. gen/
  12. # Gradle files
  13. .gradle/
  14. build/
  15. # Local configuration file (sdk path, etc)
  16. local.properties
  17. # Proguard folder generated by Eclipse
  18. proguard/
  19. #Log Files
  20. *.log

好多的规则https://github.com/github/gitignore

记录
  1. senrsl@senrsl-desktop:~$ cd android/workspace/weibo/
  2. senrsl@senrsl-desktop:~/android/workspace/weibo$ ll
  3. 总用量 44
  4. drwxrwxr-x 10 senrsl senrsl 4096  5月  5 13:37 ./
  5. drwxrwxr-x  9 senrsl senrsl 4096  5月  5 13:14 ../
  6. drwxrwxr-x 10 senrsl senrsl 4096  4月 23 14:17 com.bjwhds.weibo/
  7. drwxrwxr-x  9 senrsl senrsl 4096  4月 19 11:27 dc.sdk.common/
  8. drwxrwxr-x  9 senrsl senrsl 4096  4月 22 14:35 dc.sdk.map/
  9. drwxrwxr-x  9 senrsl senrsl 4096  4月  2 13:48 dc.sdk.view/
  10. drwxrwxr-x  9 senrsl senrsl 4096  4月 19 10:04 dc.sdk.weibo/
  11. drwxrwxr-x  9 senrsl senrsl 4096  3月 31 19:21 dc.test.tencent.weibo/
  12. drwxrwxr-x  9 senrsl senrsl 4096  3月 29 11:09 dc.test.weibo/
  13. drwxrwxr-x  8 senrsl senrsl 4096  5月  5 13:38 .git/
  14. -rw-rw-r--  1 senrsl senrsl   14  5月  5 13:37 README.md
  15. senrsl@senrsl-desktop:~/android/workspace/weibo$ git status
  16. # On branch master
  17. # Changes not staged for commit:
  18. #   (use "git add <file>..." to update what will be committed)
  19. #   (use "git checkout -- <file>..." to discard changes in working directory)
  20. #
  21. #    modified:   com.bjwhds.weibo/.settings/org.eclipse.jdt.core.prefs
  22. #    modified:   dc.sdk.common/bin/dc.sdk.common.jar
  23. #    modified:   dc.sdk.map/bin/dc.sdk.map.jar
  24. #    modified:   dc.sdk.view/bin/dc.sdk.view.jar
  25. #    modified:   dc.sdk.weibo/bin/dc.sdk.weibo.jar
  26. #
  27. # Untracked files:
  28. #   (use "git add <file>..." to include in what will be committed)
  29. #
  30. #    dc.sdk.common/bin/jarlist.cache
  31. no changes added to commit (use "git add" and/or "git commit -a")
  32. senrsl@senrsl-desktop:~/android/workspace/weibo$ cd ..
  33. senrsl@senrsl-desktop:~/android/workspace$ cd tech
  34. senrsl@senrsl-desktop:~/android/workspace/tech$ ll
  35. 总用量 24
  36. drwxrwxr-x 6 senrsl senrsl 4096  5月  2 16:50 ./
  37. drwxrwxr-x 9 senrsl senrsl 4096  5月  5 13:14 ../
  38. drwxrwxr-x 8 senrsl senrsl 4096  5月  5 21:31 .git/
  39. drwxrwxr-x 8 senrsl senrsl 4096  5月  2 16:39 helloword/
  40. drwxrwxr-x 8 senrsl senrsl 4096  5月  2 16:41 secondHallo/
  41. drwxrwxr-x 5 senrsl senrsl 4096  5月  2 16:39 thirdHallo/
  42. senrsl@senrsl-desktop:~/android/workspace/tech$ echo '#ignore to git' >>> .gitignore
  43. bash: 未预期的符号 `>' 附近有语法错误
  44. senrsl@senrsl-desktop:~/android/workspace/tech$ echo '#ignore to git' >> .gitignore
  45. senrsl@senrsl-desktop:~/android/workspace/tech$ git rm */bin
  46. fatal: not removing 'helloword/bin' recursively without -r
  47. senrsl@senrsl-desktop:~/android/workspace/tech$ git status
  48. # On branch master
  49. # Changes not staged for commit:
  50. #   (use "git add <file>..." to update what will be committed)
  51. #   (use "git checkout -- <file>..." to discard changes in working directory)
  52. #
  53. #    modified:   helloword/bin/AndroidManifest.xml
  54. #
  55. # Untracked files:
  56. #   (use "git add <file>..." to include in what will be committed)
  57. #
  58. #    .gitignore
  59. #    .gitignore~
  60. no changes added to commit (use "git add" and/or "git commit -a")
  61. senrsl@senrsl-desktop:~/android/workspace/tech$ git add .git
  62. .git/        .gitignore   .gitignore~ 
  63. senrsl@senrsl-desktop:~/android/workspace/tech$ git add .git
  64. .git/        .gitignore   .gitignore~ 
  65. senrsl@senrsl-desktop:~/android/workspace/tech$ git add .gitignore
  66. senrsl@senrsl-desktop:~/android/workspace/tech$ git commit -m 'set gitignore'
  67. [master 98aff12] set gitignore
  68.  1 file changed, 28 insertions(+)
  69.  create mode 100644 .gitignore
  70. senrsl@senrsl-desktop:~/android/workspace/tech$ git push origin master
  71. Counting objects: 4, done.
  72. Delta compression using up to 4 threads.
  73. Compressing objects: 100% (3/3), done.
  74. Writing objects: 100% (3/3), 539 bytes, done.
  75. Total 3 (delta 0), reused 0 (delta 0)
  76. To git@bitbucket.org:dcjz/tech.git
  77.    7b67ac6..98aff12  master -> master
  78. senrsl@senrsl-desktop:~/android/workspace/tech$ git commit -a -m 'update gitignore'
  79. [master a8088b9] update gitignore
  80.  2 files changed, 3 insertions(+), 2 deletions(-)
  81. senrsl@senrsl-desktop:~/android/workspace/tech$ git push origin master
  82. Counting objects: 11, done.
  83. Delta compression using up to 4 threads.
  84. Compressing objects: 100% (6/6), done.
  85. Writing objects: 100% (6/6), 552 bytes, done.
  86. Total 6 (delta 4), reused 0 (delta 0)
  87. To git@bitbucket.org:dcjz/tech.git
  88.    98aff12..a8088b9  master -> master
  89. senrsl@senrsl-desktop:~/android/workspace/tech$ git status
  90. # On branch master
  91. # Changes to be committed:
  92. #   (use "git reset HEAD <file>..." to unstage)
  93. #
  94. #    deleted:    helloword/bin/AndroidManifest.xml
  95. #    deleted:    helloword/bin/classes.dex
  96. #    deleted:    helloword/bin/helloword.apk
  97. #    deleted:    helloword/bin/jarlist.cache
  98. #    deleted:    helloword/bin/resources.ap_
  99. #    deleted:    secondHallo/bin/AndroidManifest.xml
  100. #    deleted:    secondHallo/bin/classes.dex
  101. #    deleted:    secondHallo/bin/jarlist.cache
  102. #    deleted:    secondHallo/bin/resources.ap_
  103. #    deleted:    secondHallo/bin/secondHallo.apk
  104. #
  105. # Changes not staged for commit:
  106. #   (use "git add/rm <file>..." to update what will be committed)
  107. #   (use "git checkout -- <file>..." to discard changes in working directory)
  108. #
  109. #    deleted:    helloword/bin/dexedLibs/annotations-eb7e5b5f545cfff7af642ba48d3df318.jar
  110. #    deleted:    helloword/bin/res/crunch/drawable-hdpi/ic_launcher.png
  111. #    deleted:    helloword/bin/res/crunch/drawable-hdpi/sinan.png
  112. #    deleted:    helloword/bin/res/crunch/drawable-ldpi/ic_launcher.png
  113. #    deleted:    helloword/bin/res/crunch/drawable-mdpi/ic_launcher.png
  114. #    deleted:    helloword/bin/res/drawable-hdpi/ic_launcher.png
  115. #    deleted:    helloword/bin/res/drawable-hdpi/sinan.png
  116. #    deleted:    helloword/bin/res/drawable-ldpi/ic_launcher.png
  117. #    deleted:    helloword/bin/res/drawable-mdpi/ic_launcher.png
  118. #    deleted:    secondHallo/bin/dexedLibs/annotations-eb7e5b5f545cfff7af642ba48d3df318.jar
  119. #    deleted:    secondHallo/bin/res/crunch/drawable-hdpi/ic_launcher.png
  120. #    deleted:    secondHallo/bin/res/crunch/drawable-ldpi/ic_launcher.png
  121. #    deleted:    secondHallo/bin/res/crunch/drawable-mdpi/ic_launcher.png
  122. #    deleted:    secondHallo/bin/res/drawable-hdpi/ic_launcher.png
  123. #    deleted:    secondHallo/bin/res/drawable-ldpi/ic_launcher.png
  124. #    deleted:    secondHallo/bin/res/drawable-mdpi/ic_launcher.png
  125. #
  126. senrsl@senrsl-desktop:~/android/workspace/tech$ git commit -a -m 'clean'
  127. [master 883821f] clean
  128.  26 files changed, 139 deletions(-)
  129.  delete mode 100644 helloword/bin/AndroidManifest.xml
  130.  delete mode 100644 helloword/bin/classes.dex
  131.  delete mode 100644 helloword/bin/dexedLibs/annotations-eb7e5b5f545cfff7af642ba48d3df318.jar
  132.  delete mode 100644 helloword/bin/helloword.apk
  133.  delete mode 100644 helloword/bin/jarlist.cache
  134.  delete mode 100644 helloword/bin/res/crunch/drawable-hdpi/ic_launcher.png
  135.  delete mode 100644 helloword/bin/res/crunch/drawable-hdpi/sinan.png
  136.  delete mode 100644 helloword/bin/res/crunch/drawable-ldpi/ic_launcher.png
  137.  delete mode 100644 helloword/bin/res/crunch/drawable-mdpi/ic_launcher.png
  138.  delete mode 100644 helloword/bin/res/drawable-hdpi/ic_launcher.png
  139.  delete mode 100644 helloword/bin/res/drawable-hdpi/sinan.png
  140.  delete mode 100644 helloword/bin/res/drawable-ldpi/ic_launcher.png
  141.  delete mode 100644 helloword/bin/res/drawable-mdpi/ic_launcher.png
  142.  delete mode 100644 helloword/bin/resources.ap_
  143.  delete mode 100644 secondHallo/bin/AndroidManifest.xml
  144.  delete mode 100644 secondHallo/bin/classes.dex
  145.  delete mode 100644 secondHallo/bin/dexedLibs/annotations-eb7e5b5f545cfff7af642ba48d3df318.jar
  146.  delete mode 100644 secondHallo/bin/jarlist.cache
  147.  delete mode 100644 secondHallo/bin/res/crunch/drawable-hdpi/ic_launcher.png
  148.  delete mode 100644 secondHallo/bin/res/crunch/drawable-ldpi/ic_launcher.png
  149.  delete mode 100644 secondHallo/bin/res/crunch/drawable-mdpi/ic_launcher.png
  150.  delete mode 100644 secondHallo/bin/res/drawable-hdpi/ic_launcher.png
  151.  delete mode 100644 secondHallo/bin/res/drawable-ldpi/ic_launcher.png
  152.  delete mode 100644 secondHallo/bin/res/drawable-mdpi/ic_launcher.png
  153.  delete mode 100644 secondHallo/bin/resources.ap_
  154.  delete mode 100644 secondHallo/bin/secondHallo.apk
  155. senrsl@senrsl-desktop:~/android/workspace/tech$ git push origin master
  156. Counting objects: 11, done.
  157. Delta compression using up to 4 threads.
  158. Compressing objects: 100% (4/4), done.
  159. Writing objects: 100% (6/6), 535 bytes, done.
  160. Total 6 (delta 2), reused 0 (delta 0)
  161. To git@bitbucket.org:dcjz/tech.git
  162.    a8088b9..883821f  master -> master
  163. senrsl@senrsl-desktop:~/android/workspace/tech$ git status
  164. # On branch master
  165. # Changes not staged for commit:
  166. #   (use "git add/rm <file>..." to update what will be committed)
  167. #   (use "git checkout -- <file>..." to discard changes in working directory)
  168. #
  169. #    deleted:    helloword/bin/classes/dc/tech/BuildConfig.class
  170. #    deleted:    helloword/bin/classes/dc/tech/ContactTest.class
  171. #    deleted:    helloword/bin/classes/dc/tech/FileServiceTest.class
  172. #    deleted:    helloword/bin/classes/dc/tech/PersonServiceTest.class
  173. #    deleted:    helloword/bin/classes/dc/tech/R$attr.class
  174. #    deleted:    helloword/bin/classes/dc/tech/R$color.class
  175. #    deleted:    helloword/bin/classes/dc/tech/R$drawable.class
  176. #    deleted:    helloword/bin/classes/dc/tech/R$id.class
  177. #    deleted:    helloword/bin/classes/dc/tech/R$layout.class
  178. #    deleted:    helloword/bin/classes/dc/tech/R$string.class
  179. #    deleted:    helloword/bin/classes/dc/tech/R.class
  180. #    deleted:    helloword/bin/classes/dc/tech/file/activity/MainActivity$1.class
  181. #    deleted:    helloword/bin/classes/dc/tech/file/activity/MainActivity.class
  182. #    deleted:    helloword/bin/classes/dc/tech/file/service/FileService.class
  183. #    deleted:    helloword/bin/classes/dc/tech/junittest/PersonService.class
  184. #    deleted:    helloword/bin/classes/dc/tech/net/activity/GetNetActivity$1.class
  185. #    deleted:    helloword/bin/classes/dc/tech/net/activity/GetNetActivity$2.class
  186. #    deleted:    helloword/bin/classes/dc/tech/net/activity/GetNetActivity.class
  187. #    deleted:    helloword/bin/classes/dc/tech/net/service/StreamService.class
  188. #    deleted:    helloword/bin/classes/dc/tech/net/utils/StreamTools.class
  189. #    deleted:    helloword/bin/classes/dc/tech/phone/PhoneActivity$callButtonListener.class
  190. #    deleted:    helloword/bin/classes/dc/tech/phone/PhoneActivity.class
  191. #    deleted:    helloword/bin/classes/dc/tech/sms/SmsActivity$1.class
  192. #    deleted:    helloword/bin/classes/dc/tech/sms/SmsActivity.class
  193. #    deleted:    helloword/bin/classes/dc/tech/softpreferences/activity/MainActivity$1.class
  194. #    deleted:    helloword/bin/classes/dc/tech/softpreferences/activity/MainActivity$2.class
  195. #    deleted:    helloword/bin/classes/dc/tech/softpreferences/activity/MainActivity.class
  196. #    deleted:    helloword/bin/classes/dc/tech/sqlite/activity/MainActivity$1.class
  197. #    deleted:    helloword/bin/classes/dc/tech/sqlite/activity/MainActivity$2.class
  198. #    deleted:    helloword/bin/classes/dc/tech/sqlite/activity/MainActivity.class
  199. #    deleted:    helloword/bin/classes/dc/tech/sqlite/activity/PersonProvider.class
  200. #    deleted:    helloword/bin/classes/dc/tech/sqlite/domain/Person.class
  201. #    deleted:    helloword/bin/classes/dc/tech/sqlite/service/DBOpenHelper.class
  202. #    deleted:    helloword/bin/classes/dc/tech/sqlite/service/PersonService.class
  203. #    deleted:    helloword/bin/classes/dc/tech/sqlite/service/SecondPersonService.class
  204. #    deleted:    helloword/bin/classes/dc/tech/test/HellowordActivity$helloBtLsnr.class
  205. #    deleted:    helloword/bin/classes/dc/tech/test/HellowordActivity.class
  206. #    deleted:    helloword/bin/classes/dc/tech/test/SecondActivity.class
  207. #    deleted:    helloword/bin/classes/dc/tech/xml/domain/Person.class
  208. #    deleted:    helloword/bin/classes/dc/tech/xml/service/DOMPersonService.class
  209. #    deleted:    helloword/bin/classes/dc/tech/xml/service/PULLPersonService.class
  210. #    deleted:    helloword/bin/classes/dc/tech/xml/service/SAXPersonService$PersonParser.class
  211. #    deleted:    helloword/bin/classes/dc/tech/xml/service/SAXPersonService.class
  212. #    deleted:    helloword/bin/classes/person.xml
  213. #
  214. no changes added to commit (use "git add" and/or "git commit -a")
  215. senrsl@senrsl-desktop:~/android/workspace/tech$ git commit -a -m 'delete bin file'
  216. [master 231720a] delete bin file
  217.  44 files changed, 11 deletions(-)
  218.  delete mode 100644 helloword/bin/classes/dc/tech/BuildConfig.class
  219.  delete mode 100644 helloword/bin/classes/dc/tech/ContactTest.class
  220.  delete mode 100644 helloword/bin/classes/dc/tech/FileServiceTest.class
  221.  delete mode 100644 helloword/bin/classes/dc/tech/PersonServiceTest.class
  222.  delete mode 100644 helloword/bin/classes/dc/tech/R$attr.class
  223.  delete mode 100644 helloword/bin/classes/dc/tech/R$color.class
  224.  delete mode 100644 helloword/bin/classes/dc/tech/R$drawable.class
  225.  delete mode 100644 helloword/bin/classes/dc/tech/R$id.class
  226.  delete mode 100644 helloword/bin/classes/dc/tech/R$layout.class
  227.  delete mode 100644 helloword/bin/classes/dc/tech/R$string.class
  228.  delete mode 100644 helloword/bin/classes/dc/tech/R.class
  229.  delete mode 100644 helloword/bin/classes/dc/tech/file/activity/MainActivity$1.class
  230.  delete mode 100644 helloword/bin/classes/dc/tech/file/activity/MainActivity.class
  231.  delete mode 100644 helloword/bin/classes/dc/tech/file/service/FileService.class
  232.  delete mode 100644 helloword/bin/classes/dc/tech/junittest/PersonService.class
  233.  delete mode 100644 helloword/bin/classes/dc/tech/net/activity/GetNetActivity$1.class
  234.  delete mode 100644 helloword/bin/classes/dc/tech/net/activity/GetNetActivity$2.class
  235.  delete mode 100644 helloword/bin/classes/dc/tech/net/activity/GetNetActivity.class
  236.  delete mode 100644 helloword/bin/classes/dc/tech/net/service/StreamService.class
  237.  delete mode 100644 helloword/bin/classes/dc/tech/net/utils/StreamTools.class
  238.  delete mode 100644 helloword/bin/classes/dc/tech/phone/PhoneActivity$callButtonListener.class
  239.  delete mode 100644 helloword/bin/classes/dc/tech/phone/PhoneActivity.class
  240.  delete mode 100644 helloword/bin/classes/dc/tech/sms/SmsActivity$1.class
  241.  delete mode 100644 helloword/bin/classes/dc/tech/sms/SmsActivity.class
  242.  delete mode 100644 helloword/bin/classes/dc/tech/softpreferences/activity/MainActivity$1.class
  243.  delete mode 100644 helloword/bin/classes/dc/tech/softpreferences/activity/MainActivity$2.class
  244.  delete mode 100644 helloword/bin/classes/dc/tech/softpreferences/activity/MainActivity.class
  245.  delete mode 100644 helloword/bin/classes/dc/tech/sqlite/activity/MainActivity$1.class
  246.  delete mode 100644 helloword/bin/classes/dc/tech/sqlite/activity/MainActivity$2.class
  247.  delete mode 100644 helloword/bin/classes/dc/tech/sqlite/activity/MainActivity.class
  248.  delete mode 100644 helloword/bin/classes/dc/tech/sqlite/activity/PersonProvider.class
  249.  delete mode 100644 helloword/bin/classes/dc/tech/sqlite/domain/Person.class
  250.  delete mode 100644 helloword/bin/classes/dc/tech/sqlite/service/DBOpenHelper.class
  251.  delete mode 100644 helloword/bin/classes/dc/tech/sqlite/service/PersonService.class
  252.  delete mode 100644 helloword/bin/classes/dc/tech/sqlite/service/SecondPersonService.class
  253.  delete mode 100644 helloword/bin/classes/dc/tech/test/HellowordActivity$helloBtLsnr.class
  254.  delete mode 100644 helloword/bin/classes/dc/tech/test/HellowordActivity.class
  255.  delete mode 100644 helloword/bin/classes/dc/tech/test/SecondActivity.class
  256.  delete mode 100644 helloword/bin/classes/dc/tech/xml/domain/Person.class
  257.  delete mode 100644 helloword/bin/classes/dc/tech/xml/service/DOMPersonService.class
  258.  delete mode 100644 helloword/bin/classes/dc/tech/xml/service/PULLPersonService.class
  259.  delete mode 100644 helloword/bin/classes/dc/tech/xml/service/SAXPersonService$PersonParser.class
  260.  delete mode 100644 helloword/bin/classes/dc/tech/xml/service/SAXPersonService.class
  261.  delete mode 100644 helloword/bin/classes/person.xml
  262. senrsl@senrsl-desktop:~/android/workspace/tech$ git push origin master
  263. Counting objects: 5, done.
  264. Delta compression using up to 4 threads.
  265. Compressing objects: 100% (3/3), done.
  266. Writing objects: 100% (3/3), 280 bytes, done.
  267. Total 3 (delta 2), reused 0 (delta 0)
  268. To git@bitbucket.org:dcjz/tech.git
  269.    883821f..231720a  master -> master
  270. senrsl@senrsl-desktop:~/android/workspace/tech$ git status
  271. # On branch master
  272. nothing to commit (working directory clean)
  273. senrsl@senrsl-desktop:~/android/workspace/tech$ git status
  274. # On branch master
  275. nothing to commit (working directory clean)
  276. senrsl@senrsl-desktop:~/android/workspace/tech$ git status
  277. # On branch master
  278. # Changes not staged for commit:
  279. #   (use "git add/rm <file>..." to update what will be committed)
  280. #   (use "git checkout -- <file>..." to discard changes in working directory)
  281. #
  282. #    deleted:    secondHallo/bin/classes/dc/study/AccessContentProviderTest.class
  283. #    deleted:    secondHallo/bin/classes/dc/study/BuildConfig.class
  284. #    deleted:    secondHallo/bin/classes/dc/study/R$attr.class
  285. #    deleted:    secondHallo/bin/classes/dc/study/R$drawable.class
  286. #    deleted:    secondHallo/bin/classes/dc/study/R$layout.class
  287. #    deleted:    secondHallo/bin/classes/dc/study/R$string.class
  288. #    deleted:    secondHallo/bin/classes/dc/study/R.class
  289. #    deleted:    secondHallo/bin/classes/dc/study/SecondHalloActivity$PersonObserver.class
  290. #    deleted:    secondHallo/bin/classes/dc/study/SecondHalloActivity.class
  291. #    deleted:    thirdHallo/bin/dc/j2se/HtmlRequest.class
  292. #    deleted:    thirdHallo/bin/dc/j2se/ImageRequest.class
  293. #    deleted:    thirdHallo/bin/dc/j2se/StreamTools.class
  294. #
  295. no changes added to commit (use "git add" and/or "git commit -a")
  296. senrsl@senrsl-desktop:~/android/workspace/tech$ git commit -a -m 'delete bin cache'
  297. [master 492fec5] delete bin cache
  298.  5 files changed, 0 insertions(+), 0 deletions(-)
  299.  delete mode 100644 secondHallo/bin/classes/dc/study/AccessContentProviderTest.class
  300.  delete mode 100644 secondHallo/bin/classes/dc/study/BuildConfig.class
  301.  delete mode 100644 thirdHallo/bin/dc/j2se/HtmlRequest.class
  302.  delete mode 100644 thirdHallo/bin/dc/j2se/ImageRequest.class
  303.  delete mode 100644 thirdHallo/bin/dc/j2se/StreamTools.class
  304. senrsl@senrsl-desktop:~/android/workspace/tech$ git reset
  305. senrsl@senrsl-desktop:~/android/workspace/tech$ git status
  306. # On branch master
  307. nothing to commit (working directory clean)
  308. senrsl@senrsl-desktop:~/android/workspace/tech$ git status
  309. # On branch master
  310. # Changes not staged for commit:
  311. #   (use "git add/rm <file>..." to update what will be committed)
  312. #   (use "git checkout -- <file>..." to discard changes in working directory)
  313. #
  314. #    deleted:    helloword/gen/dc/tech/BuildConfig.java
  315. #    deleted:    helloword/gen/dc/tech/R.java
  316. #    deleted:    secondHallo/gen/dc/study/BuildConfig.java
  317. #    deleted:    secondHallo/gen/dc/study/R.java
  318. #
  319. no changes added to commit (use "git add" and/or "git commit -a")
  320. senrsl@senrsl-desktop:~/android/workspace/tech$ git commit -a -m 'delete bin&gen'
  321. [master 5f37443] delete bin&gen
  322.  4 files changed, 129 deletions(-)
  323.  delete mode 100644 helloword/gen/dc/tech/BuildConfig.java
  324.  delete mode 100644 helloword/gen/dc/tech/R.java
  325.  delete mode 100644 secondHallo/gen/dc/study/BuildConfig.java
  326.  delete mode 100644 secondHallo/gen/dc/study/R.java
  327. senrsl@senrsl-desktop:~/android/workspace/tech$ git push origin master
  328. Counting objects: 20, done.
  329. Delta compression using up to 4 threads.
  330. Compressing objects: 100% (9/9), done.
  331. Writing objects: 100% (12/12), 994 bytes, done.
  332. Total 12 (delta 5), reused 0 (delta 0)
  333. To git@bitbucket.org:dcjz/tech.git
  334.    231720a..5f37443  master -> master
  335. senrsl@senrsl-desktop:~/android/workspace/tech$ git status
  336. # On branch master
  337. # Changes not staged for commit:
  338. #   (use "git add/rm <file>..." to update what will be committed)
  339. #   (use "git checkout -- <file>..." to discard changes in working directory)
  340. #
  341. #    deleted:    secondHallo/bin/classes/dc/study/R$attr.class
  342. #    deleted:    secondHallo/bin/classes/dc/study/R$drawable.class
  343. #    deleted:    secondHallo/bin/classes/dc/study/R$layout.class
  344. #    deleted:    secondHallo/bin/classes/dc/study/R$string.class
  345. #    deleted:    secondHallo/bin/classes/dc/study/R.class
  346. #    deleted:    secondHallo/bin/classes/dc/study/SecondHalloActivity$PersonObserver.class
  347. #    deleted:    secondHallo/bin/classes/dc/study/SecondHalloActivity.class
  348. #
  349. no changes added to commit (use "git add" and/or "git commit -a")
  350. senrsl@senrsl-desktop:~/android/workspace/tech$ git commit -a -m 'delete 2nd bin'
  351. [master 53d8a7d] delete 2nd bin
  352.  7 files changed, 0 insertions(+), 0 deletions(-)
  353.  delete mode 100644 secondHallo/bin/classes/dc/study/R$attr.class
  354.  delete mode 100644 secondHallo/bin/classes/dc/study/R$drawable.class
  355.  delete mode 100644 secondHallo/bin/classes/dc/study/R$layout.class
  356.  delete mode 100644 secondHallo/bin/classes/dc/study/R$string.class
  357.  delete mode 100644 secondHallo/bin/classes/dc/study/R.class
  358.  delete mode 100644 secondHallo/bin/classes/dc/study/SecondHalloActivity$PersonObserver.class
  359.  delete mode 100644 secondHallo/bin/classes/dc/study/SecondHalloActivity.class
  360. senrsl@senrsl-desktop:~/android/workspace/tech$ git push origin master
  361. Counting objects: 5, done.
  362. Delta compression using up to 4 threads.
  363. Compressing objects: 100% (3/3), done.
  364. Writing objects: 100% (3/3), 284 bytes, done.
  365. Total 3 (delta 2), reused 0 (delta 0)
  366. To git@bitbucket.org:dcjz/tech.git
  367.    5f37443..53d8a7d  master -> master
  368. senrsl@senrsl-desktop:~/android/workspace/tech$

use by weibo decode

  1.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-hdpi/ic_com_sina_weibo_sdk_login_with_account_text_pressed.png
  2.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-hdpi/ic_com_sina_weibo_sdk_login_with_text.png
  3.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-hdpi/ic_com_sina_weibo_sdk_logo.png
  4.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-hdpi/ic_com_sina_weibo_sdk_logo_32.png
  5.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-ldpi/ic_com_sina_weibo_sdk_login_button_with_frame_logo_focused.png
  6.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-ldpi/ic_com_sina_weibo_sdk_login_button_with_frame_logo_normal.png
  7.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-ldpi/ic_com_sina_weibo_sdk_login_button_with_frame_logo_pressed.png
  8.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-ldpi/ic_com_sina_weibo_sdk_login_with_account_text_focused.png
  9.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-ldpi/ic_com_sina_weibo_sdk_login_with_account_text_normal.png
  10.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-ldpi/ic_com_sina_weibo_sdk_login_with_account_text_pressed.png
  11.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-ldpi/ic_com_sina_weibo_sdk_login_with_text.png
  12.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-ldpi/ic_com_sina_weibo_sdk_logo.png
  13.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-mdpi/ic_com_sina_weibo_sdk_button_blue_focused.9.png
  14.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-mdpi/ic_com_sina_weibo_sdk_button_blue_normal.9.png
  15.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-mdpi/ic_com_sina_weibo_sdk_button_blue_pressed.9.png
  16.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-mdpi/ic_com_sina_weibo_sdk_button_grey_focused.9.png
  17.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-mdpi/ic_com_sina_weibo_sdk_button_grey_normal.9.png
  18.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-mdpi/ic_com_sina_weibo_sdk_button_grey_pressed.9.png
  19.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-mdpi/ic_com_sina_weibo_sdk_login_button_with_frame_logo_focused.png
  20.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-mdpi/ic_com_sina_weibo_sdk_login_button_with_frame_logo_normal.png
  21.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-mdpi/ic_com_sina_weibo_sdk_login_button_with_frame_logo_pressed.png
  22.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-mdpi/ic_com_sina_weibo_sdk_login_with_account_text_focused.png
  23.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-mdpi/ic_com_sina_weibo_sdk_login_with_account_text_normal.png
  24.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-mdpi/ic_com_sina_weibo_sdk_login_with_account_text_pressed.png
  25.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-mdpi/ic_com_sina_weibo_sdk_login_with_text.png
  26.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-mdpi/ic_com_sina_weibo_sdk_logo.png
  27.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xhdpi/ic_com_sina_weibo_sdk_button_blue_focused.9.png
  28.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xhdpi/ic_com_sina_weibo_sdk_button_blue_normal.9.png
  29.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xhdpi/ic_com_sina_weibo_sdk_button_blue_pressed.9.png
  30.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xhdpi/ic_com_sina_weibo_sdk_button_grey_focused.9.png
  31.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xhdpi/ic_com_sina_weibo_sdk_button_grey_normal.9.png
  32.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xhdpi/ic_com_sina_weibo_sdk_button_grey_pressed.9.png
  33.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xhdpi/ic_com_sina_weibo_sdk_login_button_with_frame_logo_focused.png
  34.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xhdpi/ic_com_sina_weibo_sdk_login_button_with_frame_logo_normal.png
  35.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xhdpi/ic_com_sina_weibo_sdk_login_button_with_frame_logo_pressed.png
  36.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xhdpi/ic_com_sina_weibo_sdk_login_with_account_text_focused.png
  37.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xhdpi/ic_com_sina_weibo_sdk_login_with_account_text_normal.png
  38.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xhdpi/ic_com_sina_weibo_sdk_login_with_account_text_pressed.png
  39.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xhdpi/ic_com_sina_weibo_sdk_logo.png
  40.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xxhdpi/ic_com_sina_weibo_sdk_login_button_with_frame_logo_focused.png
  41.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xxhdpi/ic_com_sina_weibo_sdk_login_button_with_frame_logo_normal.png
  42.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xxhdpi/ic_com_sina_weibo_sdk_login_button_with_frame_logo_pressed.png
  43.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xxhdpi/ic_com_sina_weibo_sdk_login_with_account_text_focused.png
  44.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xxhdpi/ic_com_sina_weibo_sdk_login_with_account_text_normal.png
  45.  delete mode 100644 weibo/sina/WeiboSDK/bin/res/crunch/drawable-xxhdpi/ic_com_sina_weibo_sdk_login_with_account_text_pressed.png
  46.  delete mode 100644 weibo/sina/WeiboSDK/gen/com/sina/weibo/sdk/BuildConfig.java
  47.  delete mode 100644 weibo/sina/WeiboSDK/gen/com/sina/weibo/sdk/R.java
  48.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/R$color.class
  49.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/R$dimen.class
  50.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/R$drawable.class
  51.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/R$string.class
  52.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/R$style.class
  53.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/R.class
  54.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/AccessTokenKeeper.class
  55.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/BuildConfig.class
  56.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/Constants.class
  57.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/R$array.class
  58.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/R$attr.class
  59.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/R$color.class
  60.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/R$dimen.class
  61.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/R$drawable.class
  62.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/R$id.class
  63.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/R$layout.class
  64.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/R$string.class
  65.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/R$style.class
  66.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/R.class
  67.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBAuthActivity$1.class
  68.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBAuthActivity$2.class
  69.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBAuthActivity$3.class
  70.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBAuthActivity$AuthListener.class
  71.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBAuthActivity.class
  72.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBAuthCodeActivity$1.class
  73.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBAuthCodeActivity$2.class
  74.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBAuthCodeActivity$3.class
  75.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBAuthCodeActivity$AuthListener.class
  76.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBAuthCodeActivity.class
  77.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBDemoMainActivity$1.class
  78.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBDemoMainActivity$2.class
  79.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBDemoMainActivity$3.class
  80.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBDemoMainActivity$4.class
  81.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBDemoMainActivity.class
  82.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBLoginLogoutActivity$1.class
  83.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBLoginLogoutActivity$2.class
  84.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBLoginLogoutActivity$AuthListener.class
  85.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBLoginLogoutActivity$LogOutRequestListener.class
  86.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBLoginLogoutActivity.class
  87.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBShareActivity$1.class
  88.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBShareActivity$2.class
  89.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBShareActivity.class
  90.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBShareItemView$1.class
  91.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBShareItemView$OnCheckedChangeListener.class
  92.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBShareItemView.class
  93.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBShareMainActivity$1.class
  94.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBShareMainActivity$2.class
  95.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBShareMainActivity$3.class
  96.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBShareMainActivity.class
  97.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBShareResponseActivity$1.class
  98.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/WBShareResponseActivity.class
  99.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/openapi/WBCommentAPIActivity$1.class
  100.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/openapi/WBCommentAPIActivity.class
  101.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/openapi/WBInviteAPIActivity$1.class
  102.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/openapi/WBInviteAPIActivity$InviteRequestListener.class
  103.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/openapi/WBInviteAPIActivity.class
  104.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/openapi/WBLogoutAPIActivity$1.class
  105.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/openapi/WBLogoutAPIActivity$LogOutRequestListener.class
  106.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/openapi/WBLogoutAPIActivity.class
  107.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/openapi/WBOpenAPIActivity.class
  108.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/openapi/WBStatusAPIActivity$1.class
  109.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/openapi/WBStatusAPIActivity.class
  110.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/openapi/WBUserAPIActivity$1.class
  111.  delete mode 100644 weibo/sina/WeiboSDKDemo/bin/classes/com/sina/weibo/sdk/demo/openapi/WBUserAPIActivity.class
  112.  delete mode 100644 weibo/sina/WeiboSDKDemo/gen/com/sina/weibo/sdk/R.java
  113.  delete mode 100644 weibo/sina/WeiboSDKDemo/gen/com/sina/weibo/sdk/demo/BuildConfig.java
  114.  delete mode 100644 weibo/sina/WeiboSDKDemo/gen/com/sina/weibo/sdk/demo/R.java
  115.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/BaseAPI$1.class
  116.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/BaseAPI.class
  117.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/FriendAPI.class
  118.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/LbsAPI.class
  119.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/PublishWeiBoAPI.class
  120.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/TimeLineAPI.class
  121.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/UserAPI.class
  122.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/WeiboAPI.class
  123.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/util/BackGroudSeletor.class
  124.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/util/FirendCompare.class
  125.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/util/HypyUtil.class
  126.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/util/ImageLoaderAsync$1.class
  127.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/util/ImageLoaderAsync$2.class
  128.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/util/ImageLoaderAsync$callBackImage.class
  129.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/util/ImageLoaderAsync.class
  130.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/util/JsonUtil.class
  131.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/util/SharePersistent.class
  132.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/api/util/Util.class
  133.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/component/BuildConfig.class
  134.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/component/R$attr.class
  135.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/component/R$drawable.class
  136.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/component/R$id.class
  137.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/component/R$layout.class
  138.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/component/R$string.class
  139.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/component/R$style.class
  140.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/component/R.class
  141.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/model/AccountModel.class
  142.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/model/BaseVO.class
  143.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/model/Firend.class
  144.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/model/ImageInfo.class
  145.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/model/ModelResult.class
  146.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/network/HttpCallback.class
  147.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/network/HttpConfig.class
  148.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/network/HttpReq$UTF8PostMethod.class
  149.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/network/HttpReq.class
  150.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/network/HttpReqWeiBo.class
  151.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/network/HttpService.class
  152.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/network/ReqParam$1.class
  153.  delete mode 100644 weibo/tencent/AndroidSDK/bin/classes/com/tencent/weibo/sdk/android/network/ReqParam.class
  154.  delete mode 100644 weibo/tencent/AndroidSDK/bin/res/crunch/drawable-hdpi/ic_com_tencent_weibo_sdk_logo_32.png
  155.  delete mode 100644 weibo/tencent/AndroidSDK/gen/com/tencent/weibo/sdk/android/component/BuildConfig.java
  156.  delete mode 100644 weibo/tencent/AndroidSDK/gen/com/tencent/weibo/sdk/android/component/R.java
  157.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/api/adapter/ConversationAdapter.class
  158.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/api/adapter/FriendAdapter$1.class
  159.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/api/adapter/FriendAdapter.class
  160.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/api/adapter/GalleryAdapter$1.class
  161.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/api/adapter/GalleryAdapter.class
  162.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/Authorize$1.class
  163.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/Authorize$2.class
  164.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/Authorize$3.class
  165.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/Authorize$4.class
  166.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/Authorize$5.class
  167.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/Authorize$6.class
  168.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/Authorize.class
  169.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/BuildConfig.class
  170.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/ConversationActivity$1.class
  171.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/ConversationActivity$2.class
  172.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/ConversationActivity$3.class
  173.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/ConversationActivity$4.class
  174.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/ConversationActivity.class
  175.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/FriendActivity$1.class
  176.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/FriendActivity$2.class
  177.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/FriendActivity$3.class
  178.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/FriendActivity$4.class
  179.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/FriendActivity$5.class
  180.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/FriendActivity$6.class
  181.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/FriendActivity.class
  182.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/GeneralDataShowActivity.class
  183.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/GeneralInterfaceActivity$1.class
  184.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/GeneralInterfaceActivity$2.class
  185.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/GeneralInterfaceActivity$3.class
  186.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/GeneralInterfaceActivity.class
  187.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/LetterListView$OnTouchingLetterChangedListener.class
  188.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/LetterListView.class
  189.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/MainPage_Activity$1.class
  190.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/MainPage_Activity$2.class
  191.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/MainPage_Activity$3.class
  192.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/MainPage_Activity$4.class
  193.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/MainPage_Activity$5.class
  194.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/MainPage_Activity.class
  195.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/PublishActivity$1.class
  196.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/PublishActivity$2.class
  197.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/PublishActivity$3.class
  198.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/PublishActivity$4.class
  199.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/PublishActivity$5.class
  200.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/PublishActivity$6.class
  201.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/PublishActivity$7.class
  202.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/PublishActivity$8.class
  203.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/PublishActivity.class
  204.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/R$attr.class
  205.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/R$drawable.class
  206.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/R$id.class
  207.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/R$layout.class
  208.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/R$string.class
  209.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/R$style.class
  210.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/R.class
  211.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/ReAddActivity$1.class
  212.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/ReAddActivity$2.class
  213.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/ReAddActivity$3.class
  214.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/ReAddActivity$4.class
  215.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/ReAddActivity$5.class
  216.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/ReAddActivity.class
  217.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/sso/AuthHelper.class
  218.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/sso/AuthReceiver.class
  219.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/sso/OnAuthListener.class
  220.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/sso/WeiboToken.class
  221.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/sso/tools/Base64.class
  222.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/sso/tools/Cryptor.class
  223.  delete mode 100644 weibo/tencent/AndroidSDKComponent/bin/classes/com/tencent/weibo/sdk/android/component/sso/tools/MD5Tools.class
  224.  delete mode 100644 weibo/tencent/AndroidSDKComponent/gen/com/tencent/weibo/sdk/android/component/BuildConfig.java
  225.  delete mode 100644 weibo/tencent/AndroidSDKComponent/gen/com/tencent/weibo/sdk/android/component/R.java
  226.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/component/R$drawable.class
  227.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/component/R$id.class
  228.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/component/R$layout.class
  229.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/component/R$string.class
  230.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/component/R$style.class
  231.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/component/R.class
  232.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/BuildConfig.class
  233.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/MainPage_Activity$1.class
  234.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/MainPage_Activity$2.class
  235.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/MainPage_Activity$3.class
  236.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/MainPage_Activity$4.class
  237.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/MainPage_Activity$5.class
  238.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/MainPage_Activity$6.class
  239.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/MainPage_Activity.class
  240.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/R$attr.class
  241.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/R$drawable.class
  242.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/R$id.class
  243.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/R$layout.class
  244.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/R$string.class
  245.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/R$style.class
  246.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/bin/classes/com/tencent/weibo/sdk/android/demo/R.class
  247.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/gen/com/tencent/weibo/sdk/android/component/R.java
  248.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/gen/com/tencent/weibo/sdk/android/demo/BuildConfig.java
  249.  delete mode 100644 weibo/tencent/AndroidSDKComponetDemo/gen/com/tencent/weibo/sdk/android/demo/R.java
  250. senrsl@senrsl-desktop:~/android/lib$ git push origin master
  251. Counting objects: 19, done.
  252. Delta compression using up to 4 threads.
  253. Compressing objects: 100% (10/10), done.
  254. Writing objects: 100% (10/10), 699 bytes, done.
  255. Total 10 (delta 6), reused 0 (delta 0)
  256. To git@bitbucket.org:dcjz/lib-android.git
  257.    c148cef..f525b4e  master -> master
  258. senrsl@senrsl-desktop:~/android/lib$ git status
  259. # On branch master
  260. nothing to commit (working directory clean)
  261. senrsl@senrsl-desktop:~/android/lib$ git status
  262. # On branch master
  263. nothing to commit (working directory clean)
  264. senrsl@senrsl-desktop:~/android/lib$ git commit -a -m 'what'
  265. # On branch master
  266. nothing to commit (working directory clean)
  267. senrsl@senrsl-desktop:~/android/lib$


ok

再加

删除那个

  1. 1105  git init
  2.  1106  git add .
  3.  1107  git commit -m 'init'
  4.  1108  git remote add origin git@bitbucket.org:dcjz/ad.git
  5.  1109  git push origin master
  6.  1110  cd..
  7.  1111  cd ..
  8.  1112  cd decode/
  9.  1113  ll
  10.  1114  git init
  11.  1115  git add .
  12.  1116  git remote add origin git@bitbucket.org:dcjz/decode.git
  13.  1117  git add .
  14.  1118  exit
  15.  1119  cd android/workspace/decode/
  16.  1120  ll
  17.  1121  git add .
  18.  1122  git commit -m 'init'
  19.  1123  git push origin master
  20.  1124  git add .
  21.  1125  git commit -m 'init02'
  22.  1126  git push origin master
  23.  1127  echo '#This is README' >> README.md
  24.  1128  gedit README.md
  25.  1129  git add .
  26.  1130  git commit -m 'add readMe'
  27.  1131  git push origin master
  28.  1132  vi README.md
  29.  1133  echo README.md
  30.  1134  vi README.md
  31.  1135  git commit -m 'edit readMe'
  32.  1136  git push origin master
  33.  1137  ll
  34.  1138  git commit -a -m 'add readMe'
  35.  1139  git push origin master
  36.  1140  gith help clone
  37.  1141  git help clone
  38.  1142  git status
  39.  1143  git log
  40.  1144  cd ..
  41.  1145  cd map
  42.  1146  ll
  43.  1147  git init
  44.  1148  git remote add origin git@bitbucket.org:dcjz/map.git
  45.  1149  echo '#map project' >> README.md
  46.  1150  git add README.md
  47.  1151  git commit -m 'Adding a README'
  48.  1152  git push -u origin master
  49.  1153  git add .
  50.  1154  git status
  51.  1155  git commit -m 'init'
  52.  1156  git push origin master
  53.  1157  repo help
  54.  1158  repo
  55.  1159  cd android/adt-bundle-linux-x86-20131030/eclipse/
  56.  1160  ./eclipse
  57.  1161  cd tools/goagent-goagent-e89d5ce/local
  58.  1162  python proxy.py
  59.  1163  cd tools/goagent-goagent-e89d5ce/locla
  60.  1164  cd tools/goagent-goagent-e89d5ce/local
  61.  1165  python proxy.py
  62.  1166  cd android/adt-bundle-linux-x86-20131030/eclipse/
  63.  1167  ./eclipse
  64.  1168  cd android/workspace/weibo/
  65.  1169  ll
  66.  1170  git init
  67.  1171  git remote add origin git@bitbucket.org:dcjz/weibo.git
  68.  1172  git add dc.sdk.common
  69.  1173  git commit -m 'init dc.sdk.common'
  70.  1174  adb push -u origin master
  71.  1175  git push -u origin master
  72.  1176  git add dc.sdk.view
  73.  1177  git commit -m 'init view'
  74.  1178  git push -u origin master
  75.  1179  git add dc.sdk.map
  76.  1180  git commit -m 'map init'
  77.  1181  git push origin master
  78.  1182  git add dc.sdk.weibo
  79.  1183  git commit -m 'init weibo core'
  80.  1184  git push origin master
  81.  1185  git add com.bjwhds.weibo/
  82.  1186  git commit -m 'init welcome'
  83.  1187  git push origin master
  84.  1188  git add dc.test.tencent.weibo
  85.  1189  git commit -m 'init test tencent weibo'
  86.  1190  git push origin master
  87.  1191  git add dc.test.weibo/
  88.  1192  git commit -m 'init test sina weibo'
  89.  1193  git push origin master
  90.  1194  echo 'weibo project' >> README.md
  91.  1195  git add README.md
  92.  1196  git commit -m 'init readMe'
  93.  1197  git push origin master
  94.  1198  cd
  95.  1199  cd android/
  96.  1200  cd lib
  97.  1201  ll
  98.  1202  git init
  99.  1203  git remote add origin git@bitbucket.org:dcjz/lib-android.git
  100.  1204  git add ADMOB/
  101.  1205  git commit -m 'init admob'
  102.  1206  git push origin master
  103.  1207  git add map/
  104.  1208  git commit -m 'init map'
  105.  1209  git push origin master
  106.  1210  git add weibo
  107.  1211  git commit -m 'init weibo lib'
  108.  1212  git push origin master
  109.  1213  echo '#This is lib for android' >> README.md
  110.  1214  git add README.md
  111.  1215  git commit -m 'init readMe'
  112.  1216  git push origin master
  113.  1217  cd..
  114.  1218  cd ..
  115.  1219  cd workspace/
  116.  1220  ll
  117.  1221  cd
  118.  1222  cd test
  119.  1223  cd bitbucket/test
  120.  1224  ll
  121.  1225  git citool
  122.  1226  git gui
  123.  1227  git clean
  124.  1228  git status
  125.  1229  git branch
  126.  1230  git branch -a
  127.  1231  git branch branch01
  128.  1232  git branch
  129.  1233  git checkout branch01
  130.  1234  git branch
  131.  1235  git status
  132.  1236  git branch master
  133.  1237  git checkout master
  134.  1238  git status
  135.  1239  git commit 'test branch'
  136.  1240  git checkout branch01
  137.  1241  git branch
  138.  1242  git commit -m 'test branch'
  139.  1243  git commit -a -m 'test branch'
  140.  1244  git push  origin branch01
  141.  1245  git clone https://dcjz@bitbucket.org/dcjz/test.git/wiki
  142.  1246  cd wiki
  143.  1247  git commit -m 'add wiki'
  144.  1248  git commit -a -m 'add wiki'
  145.  1249  git push origin master
  146.  1250  git branch -v
  147.  1251  cd ..
  148.  1252  git branch -v
  149.  1253  git branch -f
  150.  1254  git branch -r
  151.  1255  git merge branch01
  152.  1256  git tag tag1.0
  153.  1257  git tag
  154.  1258  git checkout tag1.0
  155.  1259  git push origin master
  156.  1260  git status
  157.  1261  git push origin tag01
  158.  1262  git tag
  159.  1263  git push origin tag1.0
  160.  1264  git remote show origin
  161.  1265  git remote show
  162.  1266  git pull.
  163.  1267  git pull
  164.  1268  git branch branch02 master
  165.  1269  git checkout branch02/master
  166.  1270  git checkout branch02
  167.  1271  git branch
  168.  1272  git push origin branch02
  169.  1273  git push origin:branch02
  170.  1274  git branch -r -d branch02
  171.  1275  git gui
  172.  1276  git gui pull
  173.  1277  git revert
  174.  1278  git tag
  175.  1279  git tag tag2.0 'add tag'
  176.  1280  git tag
  177.  1281  git branch
  178.  1282  git checkout branch master
  179.  1283  git branch -a
  180.  1284  git checkout master
  181.  1285  git branch
  182.  1286  git branch -a
  183.  1287  git branch branch04
  184.  1288  git push origin branch04
  185.  1289  git tag tag2.0
  186.  1290  git tag
  187.  1291  git tag tag4bad3fd 4bad3fd
  188.  1292  d
  189.  1293  git push origin tag2.0
  190.  1294  git checkout tag2.0
  191.  1295  git branch branch05 tag2.0
  192.  1296  git branch
  193.  1297  git status
  194.  1298  git log
  195.  1299  git status
  196.  1300  git tag status
  197.  1301  git tag -d status
  198.  1302  git push origin
  199.  1303  git commit -a -m 'what?? to do '
  200.  1304  git add .
  201.  1305  git commit -a -m 'what to do'
  202.  1306  git push origin
  203.  1307  git push origin master
  204.  1308  git add .
  205.  1309  git commit -a -m 'test'
  206.  1310  git push origin master
  207.  1311  cd
  208.  1312  cd android/workspace/
  209.  1313  cd Test/
  210.  1314  ll
  211.  1315  git config show
  212.  1316  git origin
  213.  1317  git branch
  214.  1318  git remote
  215.  1319  git remote -r
  216.  1320  git -r
  217.  1321  git remote show
  218.  1322  git ls-remote
  219.  1323  git remote add origin  git@bitbucket.org:dcjz/test-eclipse.git
  220.  1324  git ls-remote
  221.  1325  cd android/workspace/tech/
  222.  1326  ll
  223.  1327  git tag tag-default
  224.  1328  git tag
  225.  1329  git push origin tag-default
  226.  1330  cd android/adt-bundle-linux-x86-20131030/eclipse/
  227.  1331  ./eclipse
  228.  1332  cd tools/goagent-goagent-e89d5ce/local
  229.  1333  python proxy.py
  230.  1334  ll
  231.  1335  grep eclipse
  232.  1336  kill eclipse
  233.  1337  grep
  234.  1338  grep --hlep
  235.  1339  grep --help
  236.  1340  help
  237.  1341  id
  238.  1342  eclipse id
  239.  1343  cd android/workspace/weibo/
  240.  1344  ll
  241.  1345  git status
  242.  1346  cd ..
  243.  1347  cd tech
  244.  1348  ll
  245.  1349  echo '#ignore to git' >>> .gitignore
  246.  1350  echo '#ignore to git' >> .gitignore
  247.  1351  git rm */bin
  248.  1352  git status
  249.  1353  git add .gitignore
  250.  1354  git commit -m 'set gitignore'
  251.  1355  git push origin master
  252.  1356  git commit -a -m 'update gitignore'
  253.  1357  git push origin master
  254.  1358  git status
  255.  1359  git commit -a -m 'clean'
  256.  1360  git push origin master
  257.  1361  git status
  258.  1362  git commit -a -m 'delete bin file'
  259.  1363  git push origin master
  260.  1364  git status
  261.  1365  git commit -a -m 'delete bin cache'
  262.  1366  git reset
  263.  1367  git status
  264.  1368  git commit -a -m 'delete bin&gen'
  265.  1369  git push origin master
  266.  1370  git status
  267.  1371  git commit -a -m 'delete 2nd bin'
  268.  1372  git push origin master
  269.  1373  cd ..
  270.  1374  cd decode/
  271.  1375  git add .gitignore
  272.  1376  git commit -m 'set gitignore'
  273.  1377  git push origin master
  274.  1378  git status
  275.  1379  git commit -a -m 'delete bin&gen'
  276.  1380  git push origin master
  277.  1381  git status
  278.  1382  git commit -a -m 'clean and no autobuild'
  279.  1383  git push origin master
  280.  1384  git status
  281.  1385  cd ..
  282.  1386  cd weibo/
  283.  1387  ll
  284.  1388  git add .gitignore
  285.  1389  git commit -m 'set gitignore'
  286.  1390  git push origin master
  287.  1391  rm -rf /bin/*
  288.  1392  rm -rf ~/android/workspace/weibo/*/bin/*
  289.  1393  rm -rf ~/android/workspace/weibo/*/gen/*
  290.  1394  git status
  291.  1395  git commit -a -m 'delete bin&gen'
  292.  1396  git push origin master
  293.  1397  rm -rf ~/android/workspace/weibo/*/proguard/*
  294.  1398  git status
  295.  1399  git commit -a -m 'delete progurad'
  296.  1400  git push origin master
  297.  1401  cd ..
  298.  1402  cd lib
  299.  1403  ll
  300.  1404  rm -rf ~/android/lib/*/bin/*
  301.  1405  git status
  302.  1406  git add .gitignore
  303.  1407  git commit -m 'set ignore'
  304.  1408  git push origin master
  305.  1409  git commit -a -m 'delete bin&gen'
  306.  1410  git push origin master
  307.  1411  git status
  308.  1412  git commit -a -m 'what'
  309.  1413  cd android/workspace/weibo/
  310.  1414  git status
  311.  1415  git commit -a -m 'fetch sdk file'
  312.  1416  git push origin master
  313.  1417  cd ..
  314.  1418  cd sdk
  315.  1419  ll
  316.  1420  git init
  317.  1421  git remote add origin git@bitbucket.org:dcjz/sdk-android.git
  318.  1422  git add .
  319.  1423  git commit -m 'init sdk'
  320.  1424  git reset
  321.  1425  git add .
  322.  1426  git reset
  323.  1427  git add .gitignore
  324.  1428  git commit -m 'set ignore'
  325.  1429  git push origin master
  326.  1430  git status
  327.  1431  history
  328. senrsl@senrsl-desktop:~/android/workspace/sdk$



--
senRsl
2014-05-06 11:10
GMT+8 @Beijing Tongzhou

没有评论 :

发表评论