commonmarker 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of commonmarker might be problematic. Click here for more details.

Files changed (501) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -2
  3. data/README.md +67 -42
  4. data/Rakefile +22 -2
  5. data/commonmarker.gemspec +13 -9
  6. data/ext/commonmarker/cmark/api_test/main.c +35 -0
  7. data/ext/commonmarker/cmark/build/CMakeFiles/CMakeError.log +12 -12
  8. data/ext/commonmarker/cmark/build/CMakeFiles/CMakeOutput.log +141 -141
  9. data/ext/commonmarker/cmark/build/api_test/CMakeFiles/api_test.dir/main.c.o +0 -0
  10. data/ext/commonmarker/cmark/build/api_test/api_test +0 -0
  11. data/ext/commonmarker/cmark/build/src/CMakeFiles/cmark.dir/houdini_html_u.c.o +0 -0
  12. data/ext/commonmarker/cmark/build/src/CMakeFiles/cmark.dir/iterator.c.o +0 -0
  13. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark.dir/houdini_html_u.c.o +0 -0
  14. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark.dir/iterator.c.o +0 -0
  15. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/houdini_html_u.c.o +0 -0
  16. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/iterator.c.o +0 -0
  17. data/ext/commonmarker/cmark/build/src/cmark +0 -0
  18. data/ext/commonmarker/cmark/build/src/libcmark.0.19.0.dylib +0 -0
  19. data/ext/commonmarker/cmark/build/src/libcmark.a +0 -0
  20. data/ext/commonmarker/cmark/build/src/libcmark.dylib +0 -0
  21. data/ext/commonmarker/cmark/src/houdini_html_u.c +26 -13
  22. data/ext/commonmarker/cmark/src/iterator.c +2 -2
  23. data/ext/commonmarker/cmark/test/__pycache__/cmark.cpython-34.pyc +0 -0
  24. data/ext/commonmarker/cmark/test/__pycache__/normalize.cpython-34.pyc +0 -0
  25. data/ext/commonmarker/cmark/test/cmark.pyc +0 -0
  26. data/ext/commonmarker/cmark/test/normalize.pyc +0 -0
  27. data/ext/commonmarker/commonmarker.c +276 -3
  28. data/ext/commonmarker/extconf.rb +3 -1
  29. data/lib/commonmarker.rb +70 -360
  30. data/lib/commonmarker/config.rb +1 -1
  31. data/lib/commonmarker/renderer.rb +91 -0
  32. data/lib/commonmarker/renderer/html_renderer.rb +149 -0
  33. data/lib/commonmarker/version.rb +1 -1
  34. data/test/benchinput.md +148414 -0
  35. data/test/benchmark.rb +13 -9
  36. data/test/progit/Gemfile +5 -0
  37. data/test/progit/README.md +9 -0
  38. data/test/progit/README.original.md +70 -0
  39. data/test/progit/Rakefile +285 -0
  40. data/test/progit/ar/01-introduction/01-chapter1.markdown +264 -0
  41. data/test/progit/ar/02-git-basics/01-chapter2.markdown +1124 -0
  42. data/test/progit/ar/NOTES +18 -0
  43. data/test/progit/ar/README +14 -0
  44. data/test/progit/az/01-introduction/01-chapter1.markdown +257 -0
  45. data/test/progit/az/02-git-basics/01-chapter2.markdown +1127 -0
  46. data/test/progit/az/03-git-branching/01-chapter3.markdown +598 -0
  47. data/test/progit/az/04-git-server/01-chapter4.markdown +861 -0
  48. data/test/progit/az/05-distributed-git/01-chapter5.markdown +897 -0
  49. data/test/progit/az/06-git-tools/01-chapter6.markdown +1126 -0
  50. data/test/progit/az/07-customizing-git/01-chapter7.markdown +937 -0
  51. data/test/progit/az/08-git-and-other-scms/01-chapter8.markdown +690 -0
  52. data/test/progit/az/09-git-internals/01-chapter9.markdown +977 -0
  53. data/test/progit/be/01-introduction/01-chapter1.markdown +257 -0
  54. data/test/progit/be/02-git-basics/01-chapter2.markdown +1126 -0
  55. data/test/progit/ca/01-introduction/01-chapter1.markdown +257 -0
  56. data/test/progit/ca/README.txt +1 -0
  57. data/test/progit/couchapp/Makefile +41 -0
  58. data/test/progit/couchapp/Readme.md +17 -0
  59. data/test/progit/couchapp/_id +1 -0
  60. data/test/progit/couchapp/shows/chapter.js +14 -0
  61. data/test/progit/couchapp/templates/foot.html +7 -0
  62. data/test/progit/couchapp/templates/head.html +51 -0
  63. data/test/progit/couchapp/vendor/markdown/showdown.js +420 -0
  64. data/test/progit/couchapp/vendor/mustache.js/mustache.js +302 -0
  65. data/test/progit/cs/01-introduction/01-chapter1.markdown +259 -0
  66. data/test/progit/cs/02-git-basics/01-chapter2.markdown +1225 -0
  67. data/test/progit/cs/03-git-branching/01-chapter3.markdown +606 -0
  68. data/test/progit/cs/04-git-server/01-chapter4.markdown +871 -0
  69. data/test/progit/cs/05-distributed-git/01-chapter5.markdown +914 -0
  70. data/test/progit/cs/06-git-tools/01-chapter6.markdown +1167 -0
  71. data/test/progit/cs/07-customizing-git/01-chapter7.markdown +940 -0
  72. data/test/progit/cs/08-git-and-other-scms/01-chapter8.markdown +700 -0
  73. data/test/progit/cs/09-git-internals/01-chapter9.markdown +1014 -0
  74. data/test/progit/de/01-introduction/01-chapter1.markdown +445 -0
  75. data/test/progit/de/02-git-basics/01-chapter2.markdown +1589 -0
  76. data/test/progit/de/03-git-branching/01-chapter3.markdown +964 -0
  77. data/test/progit/de/04-git-server/01-chapter4.markdown +1337 -0
  78. data/test/progit/de/05-distributed-git/01-chapter5.markdown +1329 -0
  79. data/test/progit/de/06-git-tools/01-chapter6.markdown +1502 -0
  80. data/test/progit/de/07-customizing-git/01-chapter7.markdown +1361 -0
  81. data/test/progit/de/08-git-and-other-scms/01-chapter8.markdown +919 -0
  82. data/test/progit/de/09-git-internals/01-chapter9.markdown +1361 -0
  83. data/test/progit/de/README.md +626 -0
  84. data/test/progit/ebooks/cover.png +0 -0
  85. data/test/progit/en/01-introduction/01-chapter1.markdown +263 -0
  86. data/test/progit/en/02-git-basics/01-chapter2.markdown +1228 -0
  87. data/test/progit/en/03-git-branching/01-chapter3.markdown +606 -0
  88. data/test/progit/en/04-git-server/01-chapter4.markdown +871 -0
  89. data/test/progit/en/05-distributed-git/01-chapter5.markdown +914 -0
  90. data/test/progit/en/06-git-tools/01-chapter6.markdown +1150 -0
  91. data/test/progit/en/07-customizing-git/01-chapter7.markdown +940 -0
  92. data/test/progit/en/08-git-and-other-scms/01-chapter8.markdown +700 -0
  93. data/test/progit/en/09-git-internals/01-chapter9.markdown +983 -0
  94. data/test/progit/eo/01-introduction/01-chapter1.markdown +257 -0
  95. data/test/progit/eo/02-git-basics/01-chapter2.markdown +1171 -0
  96. data/test/progit/epub/ProGit.css +28 -0
  97. data/test/progit/epub/title.png +0 -0
  98. data/test/progit/es-ni/01-introduction/01-chapter1.markdown +257 -0
  99. data/test/progit/es-ni/02-git-basics/01-chapter2.markdown +1127 -0
  100. data/test/progit/es/01-introduction/01-chapter1.markdown +262 -0
  101. data/test/progit/es/02-git-basics/01-chapter2.markdown +1165 -0
  102. data/test/progit/es/03-git-branching/01-chapter3.markdown +598 -0
  103. data/test/progit/es/04-git-server/01-chapter4.markdown +707 -0
  104. data/test/progit/es/05-distributed-git/01-chapter5.markdown +890 -0
  105. data/test/progit/es/06-git-tools/01-chapter6.markdown +1113 -0
  106. data/test/progit/es/07-customizing-git/01-chapter7.markdown +875 -0
  107. data/test/progit/es/08-git-and-other-scms/01-chapter8.markdown +686 -0
  108. data/test/progit/es/09-git-internals/01-chapter9.markdown +976 -0
  109. data/test/progit/es/NOTES +29 -0
  110. data/test/progit/es/README +3 -0
  111. data/test/progit/es/glosario-Benzirpi.txt +27 -0
  112. data/test/progit/es/omegat-Benzirpi.tmx +29075 -0
  113. data/test/progit/fa/01-introduction/01-chapter1.markdown +262 -0
  114. data/test/progit/fa/03-git-branching/01-chapter3.markdown +608 -0
  115. data/test/progit/fa/04-git-server/01-chapter4.markdown +872 -0
  116. data/test/progit/fa/NOTES.en-fa.md +143 -0
  117. data/test/progit/fa/README.md +7 -0
  118. data/test/progit/fi/01-introduction/01-chapter1.markdown +259 -0
  119. data/test/progit/fi/02-git-basics/01-chapter2.markdown +1171 -0
  120. data/test/progit/fi/NOTES +5 -0
  121. data/test/progit/figures-dia/fig0101.dia +617 -0
  122. data/test/progit/figures-dia/fig0102.dia +921 -0
  123. data/test/progit/figures-dia/fig0103.dia +1468 -0
  124. data/test/progit/figures-dia/fig0104.dia +1432 -0
  125. data/test/progit/figures-dia/fig0105.dia +1924 -0
  126. data/test/progit/figures-dia/fig0106.dia +562 -0
  127. data/test/progit/figures-dia/fig0201.dia +774 -0
  128. data/test/progit/figures-dia/fig0301.dia +2006 -0
  129. data/test/progit/figures-dia/fig0302.dia +2148 -0
  130. data/test/progit/figures-dia/fig0303.dia +719 -0
  131. data/test/progit/figures-dia/fig0304.dia +525 -0
  132. data/test/progit/figures-dia/fig0305.dia +622 -0
  133. data/test/progit/figures-dia/fig0306.dia +622 -0
  134. data/test/progit/figures-dia/fig0307.dia +719 -0
  135. data/test/progit/figures-dia/fig0308.dia +734 -0
  136. data/test/progit/figures-dia/fig0309.dia +831 -0
  137. data/test/progit/figures-dia/fig0310.dia +412 -0
  138. data/test/progit/figures-dia/fig0311.dia +493 -0
  139. data/test/progit/figures-dia/fig0312.dia +596 -0
  140. data/test/progit/figures-dia/fig0313.dia +774 -0
  141. data/test/progit/figures-dia/fig0314.dia +846 -0
  142. data/test/progit/figures-dia/fig0315.dia +787 -0
  143. data/test/progit/figures-dia/fig0316.dia +1078 -0
  144. data/test/progit/figures-dia/fig0317.dia +881 -0
  145. data/test/progit/figures-dia/fig0318.dia +968 -0
  146. data/test/progit/figures-dia/fig0319.dia +957 -0
  147. data/test/progit/figures-dia/fig0320.dia +1637 -0
  148. data/test/progit/figures-dia/fig0321.dia +1494 -0
  149. data/test/progit/figures-dia/fig0322.dia +1142 -0
  150. data/test/progit/figures-dia/fig0323.dia +1377 -0
  151. data/test/progit/figures-dia/fig0324.dia +1603 -0
  152. data/test/progit/figures-dia/fig0325.dia +2003 -0
  153. data/test/progit/figures-dia/fig0326.dia +2013 -0
  154. data/test/progit/figures-dia/fig0327.dia +687 -0
  155. data/test/progit/figures-dia/fig0328.dia +814 -0
  156. data/test/progit/figures-dia/fig0329.dia +793 -0
  157. data/test/progit/figures-dia/fig0330.dia +693 -0
  158. data/test/progit/figures-dia/fig0331.dia +1159 -0
  159. data/test/progit/figures-dia/fig0332.dia +1362 -0
  160. data/test/progit/figures-dia/fig0333.dia +1165 -0
  161. data/test/progit/figures-dia/fig0334.dia +1450 -0
  162. data/test/progit/figures-dia/fig0335.dia +994 -0
  163. data/test/progit/figures-dia/fig0336.dia +786 -0
  164. data/test/progit/figures-dia/fig0337.dia +1546 -0
  165. data/test/progit/figures-dia/fig0338.dia +1755 -0
  166. data/test/progit/figures-dia/fig0339.dia +1882 -0
  167. data/test/progit/figures-dia/fig0501.dia +456 -0
  168. data/test/progit/figures-dia/fig0502.dia +956 -0
  169. data/test/progit/figures-dia/fig0503.dia +915 -0
  170. data/test/progit/figures-dia/fig0504.dia +620 -0
  171. data/test/progit/figures-dia/fig0505.dia +744 -0
  172. data/test/progit/figures-dia/fig0506.dia +747 -0
  173. data/test/progit/figures-dia/fig0507.dia +895 -0
  174. data/test/progit/figures-dia/fig0508.dia +1122 -0
  175. data/test/progit/figures-dia/fig0509.dia +1243 -0
  176. data/test/progit/figures-dia/fig0510.dia +1240 -0
  177. data/test/progit/figures-dia/fig0511.dia +1201 -0
  178. data/test/progit/figures-dia/fig0512.dia +801 -0
  179. data/test/progit/figures-dia/fig0513.dia +1387 -0
  180. data/test/progit/figures-dia/fig0514.dia +1568 -0
  181. data/test/progit/figures-dia/fig0515.dia +1721 -0
  182. data/test/progit/figures-dia/fig0516.dia +997 -0
  183. data/test/progit/figures-dia/fig0517.dia +994 -0
  184. data/test/progit/figures-dia/fig0518.dia +1145 -0
  185. data/test/progit/figures-dia/fig0519.dia +992 -0
  186. data/test/progit/figures-dia/fig0520.dia +1240 -0
  187. data/test/progit/figures-dia/fig0521.dia +801 -0
  188. data/test/progit/figures-dia/fig0522.dia +922 -0
  189. data/test/progit/figures-dia/fig0523.dia +922 -0
  190. data/test/progit/figures-dia/fig0524.dia +1828 -0
  191. data/test/progit/figures-dia/fig0525.dia +2685 -0
  192. data/test/progit/figures-dia/fig0526.dia +717 -0
  193. data/test/progit/figures-dia/fig0527.dia +856 -0
  194. data/test/progit/figures-dia/fig0601.dia +790 -0
  195. data/test/progit/figures-dia/fig0702.dia +795 -0
  196. data/test/progit/figures-dia/fig0703.dia +795 -0
  197. data/test/progit/figures-dia/fig0901.dia +669 -0
  198. data/test/progit/figures-dia/fig0902.dia +834 -0
  199. data/test/progit/figures-dia/fig0903.dia +1483 -0
  200. data/test/progit/figures-dia/fig0904.dia +1728 -0
  201. data/test/progit/figures-dia/makeimages +25 -0
  202. data/test/progit/figures-source/progit.graffle +123108 -0
  203. data/test/progit/figures/18333fig0101-tn.png +0 -0
  204. data/test/progit/figures/18333fig0102-tn.png +0 -0
  205. data/test/progit/figures/18333fig0103-tn.png +0 -0
  206. data/test/progit/figures/18333fig0104-tn.png +0 -0
  207. data/test/progit/figures/18333fig0105-tn.png +0 -0
  208. data/test/progit/figures/18333fig0106-tn.png +0 -0
  209. data/test/progit/figures/18333fig0107-tn.png +0 -0
  210. data/test/progit/figures/18333fig0201-tn.png +0 -0
  211. data/test/progit/figures/18333fig0202-tn.png +0 -0
  212. data/test/progit/figures/18333fig0301-tn.png +0 -0
  213. data/test/progit/figures/18333fig0302-tn.png +0 -0
  214. data/test/progit/figures/18333fig0303-tn.png +0 -0
  215. data/test/progit/figures/18333fig0304-tn.png +0 -0
  216. data/test/progit/figures/18333fig0305-tn.png +0 -0
  217. data/test/progit/figures/18333fig0306-tn.png +0 -0
  218. data/test/progit/figures/18333fig0307-tn.png +0 -0
  219. data/test/progit/figures/18333fig0308-tn.png +0 -0
  220. data/test/progit/figures/18333fig0309-tn.png +0 -0
  221. data/test/progit/figures/18333fig0310-tn.png +0 -0
  222. data/test/progit/figures/18333fig0311-tn.png +0 -0
  223. data/test/progit/figures/18333fig0312-tn.png +0 -0
  224. data/test/progit/figures/18333fig0313-tn.png +0 -0
  225. data/test/progit/figures/18333fig0314-tn.png +0 -0
  226. data/test/progit/figures/18333fig0315-tn.png +0 -0
  227. data/test/progit/figures/18333fig0316-tn.png +0 -0
  228. data/test/progit/figures/18333fig0317-tn.png +0 -0
  229. data/test/progit/figures/18333fig0318-tn.png +0 -0
  230. data/test/progit/figures/18333fig0319-tn.png +0 -0
  231. data/test/progit/figures/18333fig0320-tn.png +0 -0
  232. data/test/progit/figures/18333fig0321-tn.png +0 -0
  233. data/test/progit/figures/18333fig0322-tn.png +0 -0
  234. data/test/progit/figures/18333fig0323-tn.png +0 -0
  235. data/test/progit/figures/18333fig0324-tn.png +0 -0
  236. data/test/progit/figures/18333fig0325-tn.png +0 -0
  237. data/test/progit/figures/18333fig0326-tn.png +0 -0
  238. data/test/progit/figures/18333fig0327-tn.png +0 -0
  239. data/test/progit/figures/18333fig0328-tn.png +0 -0
  240. data/test/progit/figures/18333fig0329-tn.png +0 -0
  241. data/test/progit/figures/18333fig0330-tn.png +0 -0
  242. data/test/progit/figures/18333fig0331-tn.png +0 -0
  243. data/test/progit/figures/18333fig0332-tn.png +0 -0
  244. data/test/progit/figures/18333fig0333-tn.png +0 -0
  245. data/test/progit/figures/18333fig0334-tn.png +0 -0
  246. data/test/progit/figures/18333fig0335-tn.png +0 -0
  247. data/test/progit/figures/18333fig0336-tn.png +0 -0
  248. data/test/progit/figures/18333fig0337-tn.png +0 -0
  249. data/test/progit/figures/18333fig0338-tn.png +0 -0
  250. data/test/progit/figures/18333fig0339-tn.png +0 -0
  251. data/test/progit/figures/18333fig0401-tn.png +0 -0
  252. data/test/progit/figures/18333fig0402-tn.png +0 -0
  253. data/test/progit/figures/18333fig0403-tn.png +0 -0
  254. data/test/progit/figures/18333fig0404-tn.png +0 -0
  255. data/test/progit/figures/18333fig0405-tn.png +0 -0
  256. data/test/progit/figures/18333fig0406-tn.png +0 -0
  257. data/test/progit/figures/18333fig0407-tn.png +0 -0
  258. data/test/progit/figures/18333fig0408-tn.png +0 -0
  259. data/test/progit/figures/18333fig0409-tn.png +0 -0
  260. data/test/progit/figures/18333fig0410-tn.png +0 -0
  261. data/test/progit/figures/18333fig0411-tn.png +0 -0
  262. data/test/progit/figures/18333fig0412-tn.png +0 -0
  263. data/test/progit/figures/18333fig0413-tn.png +0 -0
  264. data/test/progit/figures/18333fig0414-tn.png +0 -0
  265. data/test/progit/figures/18333fig0415-tn.png +0 -0
  266. data/test/progit/figures/18333fig0501-tn.png +0 -0
  267. data/test/progit/figures/18333fig0502-tn.png +0 -0
  268. data/test/progit/figures/18333fig0503-tn.png +0 -0
  269. data/test/progit/figures/18333fig0504-tn.png +0 -0
  270. data/test/progit/figures/18333fig0505-tn.png +0 -0
  271. data/test/progit/figures/18333fig0506-tn.png +0 -0
  272. data/test/progit/figures/18333fig0507-tn.png +0 -0
  273. data/test/progit/figures/18333fig0508-tn.png +0 -0
  274. data/test/progit/figures/18333fig0509-tn.png +0 -0
  275. data/test/progit/figures/18333fig0510-tn.png +0 -0
  276. data/test/progit/figures/18333fig0511-tn.png +0 -0
  277. data/test/progit/figures/18333fig0512-tn.png +0 -0
  278. data/test/progit/figures/18333fig0513-tn.png +0 -0
  279. data/test/progit/figures/18333fig0514-tn.png +0 -0
  280. data/test/progit/figures/18333fig0515-tn.png +0 -0
  281. data/test/progit/figures/18333fig0516-tn.png +0 -0
  282. data/test/progit/figures/18333fig0517-tn.png +0 -0
  283. data/test/progit/figures/18333fig0518-tn.png +0 -0
  284. data/test/progit/figures/18333fig0519-tn.png +0 -0
  285. data/test/progit/figures/18333fig0520-tn.png +0 -0
  286. data/test/progit/figures/18333fig0521-tn.png +0 -0
  287. data/test/progit/figures/18333fig0522-tn.png +0 -0
  288. data/test/progit/figures/18333fig0523-tn.png +0 -0
  289. data/test/progit/figures/18333fig0524-tn.png +0 -0
  290. data/test/progit/figures/18333fig0525-tn.png +0 -0
  291. data/test/progit/figures/18333fig0526-tn.png +0 -0
  292. data/test/progit/figures/18333fig0527-tn.png +0 -0
  293. data/test/progit/figures/18333fig0601-tn.png +0 -0
  294. data/test/progit/figures/18333fig0701-tn.png +0 -0
  295. data/test/progit/figures/18333fig0702-tn.png +0 -0
  296. data/test/progit/figures/18333fig0703-tn.png +0 -0
  297. data/test/progit/figures/18333fig0901-tn.png +0 -0
  298. data/test/progit/figures/18333fig0902-tn.png +0 -0
  299. data/test/progit/figures/18333fig0903-tn.png +0 -0
  300. data/test/progit/figures/18333fig0904-tn.png +0 -0
  301. data/test/progit/fr/01-introduction/01-chapter1.markdown +371 -0
  302. data/test/progit/fr/02-git-basics/01-chapter2.markdown +1378 -0
  303. data/test/progit/fr/03-git-branching/01-chapter3.markdown +781 -0
  304. data/test/progit/fr/04-git-server/01-chapter4.markdown +1141 -0
  305. data/test/progit/fr/05-distributed-git/01-chapter5.markdown +1163 -0
  306. data/test/progit/fr/06-git-tools/01-chapter6.markdown +1356 -0
  307. data/test/progit/fr/07-customizing-git/01-chapter7.markdown +1200 -0
  308. data/test/progit/fr/08-git-and-other-scms/01-chapter8.markdown +832 -0
  309. data/test/progit/fr/09-git-internals/01-chapter9.markdown +1228 -0
  310. data/test/progit/fr/NOTES.fr-fr.markdown +1 -0
  311. data/test/progit/fr/NOTES.fr-fr.md +127 -0
  312. data/test/progit/fr/README.md +43 -0
  313. data/test/progit/fr/glossaire-git.adoc +108 -0
  314. data/test/progit/hi/01-introduction/01-chapter1.markdown +7 -0
  315. data/test/progit/hu/01-introduction/01-chapter1.markdown +257 -0
  316. data/test/progit/id/01-introduction/01-chapter1.markdown +257 -0
  317. data/test/progit/id/02-git-basics/01-chapter2.markdown +1127 -0
  318. data/test/progit/id/03-git-branching/01-chapter3.markdown +598 -0
  319. data/test/progit/it/01-introduction/01-chapter1.markdown +263 -0
  320. data/test/progit/it/02-git-basics/01-chapter2.markdown +1227 -0
  321. data/test/progit/it/03-git-branching/01-chapter3.markdown +598 -0
  322. data/test/progit/it/04-git-server/01-chapter4.markdown +864 -0
  323. data/test/progit/it/05-distributed-git/01-chapter5.markdown +897 -0
  324. data/test/progit/it/06-git-tools/01-chapter6.markdown +1144 -0
  325. data/test/progit/it/07-customizing-git/01-chapter7.markdown +606 -0
  326. data/test/progit/it/08-git-and-other-scms/01-chapter8.markdown +707 -0
  327. data/test/progit/it/09-git-internals/01-chapter9.markdown +1000 -0
  328. data/test/progit/ja/01-introduction/01-chapter1.markdown +260 -0
  329. data/test/progit/ja/02-git-basics/01-chapter2.markdown +1221 -0
  330. data/test/progit/ja/03-git-branching/01-chapter3.markdown +604 -0
  331. data/test/progit/ja/04-git-server/01-chapter4.markdown +863 -0
  332. data/test/progit/ja/05-distributed-git/01-chapter5.markdown +908 -0
  333. data/test/progit/ja/06-git-tools/01-chapter6.markdown +1133 -0
  334. data/test/progit/ja/07-customizing-git/01-chapter7.markdown +936 -0
  335. data/test/progit/ja/08-git-and-other-scms/01-chapter8.markdown +690 -0
  336. data/test/progit/ja/09-git-internals/01-chapter9.markdown +984 -0
  337. data/test/progit/ja/README.md +58 -0
  338. data/test/progit/ja/translation glossaries.txt +33 -0
  339. data/test/progit/ko/01-introduction/01-chapter1.markdown +258 -0
  340. data/test/progit/ko/02-git-basics/01-chapter2.markdown +1181 -0
  341. data/test/progit/ko/03-git-branching/01-chapter3.markdown +612 -0
  342. data/test/progit/ko/04-git-server/01-chapter4.markdown +867 -0
  343. data/test/progit/ko/05-distributed-git/01-chapter5.markdown +913 -0
  344. data/test/progit/ko/06-git-tools/01-chapter6.markdown +1142 -0
  345. data/test/progit/ko/07-customizing-git/01-chapter7.markdown +935 -0
  346. data/test/progit/ko/08-git-and-other-scms/01-chapter8.markdown +688 -0
  347. data/test/progit/ko/09-git-internals/01-chapter9.markdown +976 -0
  348. data/test/progit/ko/README.md +75 -0
  349. data/test/progit/ko/translation_guide.txt +65 -0
  350. data/test/progit/latex/README +27 -0
  351. data/test/progit/latex/config.yml +144 -0
  352. data/test/progit/latex/makepdf +207 -0
  353. data/test/progit/latex/template.tex +155 -0
  354. data/test/progit/makeebooks +125 -0
  355. data/test/progit/makepdfs +47 -0
  356. data/test/progit/mk/01-introduction/01-chapter1.markdown +258 -0
  357. data/test/progit/mk/02-git-basics/01-chapter2.markdown +1125 -0
  358. data/test/progit/mk/03-git-branching/01-chapter3.markdown +598 -0
  359. data/test/progit/mk/05-distributed-git/01-chapter5.markdown +897 -0
  360. data/test/progit/nl/01-introduction/01-chapter1.markdown +296 -0
  361. data/test/progit/nl/02-git-basics/01-chapter2.markdown +1253 -0
  362. data/test/progit/nl/03-git-branching/01-chapter3.markdown +642 -0
  363. data/test/progit/nl/04-git-server/01-chapter4.markdown +902 -0
  364. data/test/progit/nl/05-distributed-git/01-chapter5.markdown +953 -0
  365. data/test/progit/nl/06-git-tools/01-chapter6.markdown +1177 -0
  366. data/test/progit/nl/07-customizing-git/01-chapter7.markdown +974 -0
  367. data/test/progit/nl/08-git-and-other-scms/01-chapter8.markdown +725 -0
  368. data/test/progit/nl/09-git-internals/01-chapter9.markdown +1013 -0
  369. data/test/progit/no-nb/01-introduction/01-chapter1.markdown +261 -0
  370. data/test/progit/no-nb/02-git-basics/01-chapter2.markdown +1225 -0
  371. data/test/progit/no-nb/03-git-branching/01-chapter3.markdown +606 -0
  372. data/test/progit/no-nb/04-git-server/01-chapter4.markdown +867 -0
  373. data/test/progit/no-nb/05-distributed-git/01-chapter5.markdown +914 -0
  374. data/test/progit/no-nb/06-git-tools/01-chapter6.markdown +1144 -0
  375. data/test/progit/no-nb/07-customizing-git/01-chapter7.markdown +936 -0
  376. data/test/progit/no-nb/08-git-and-other-scms/01-chapter8.markdown +689 -0
  377. data/test/progit/no-nb/09-git-internals/01-chapter9.markdown +977 -0
  378. data/test/progit/no-nb/README +2 -0
  379. data/test/progit/pl/01-introduction/01-chapter1.markdown +257 -0
  380. data/test/progit/pl/02-git-basics/02-chapter2.markdown +1128 -0
  381. data/test/progit/pl/03-git-branching/01-chapter3.markdown +598 -0
  382. data/test/progit/pl/04-git-server/01-chapter4.markdown +897 -0
  383. data/test/progit/pl/05-distributed-git/01-chapter5.markdown +1278 -0
  384. data/test/progit/pl/06-git-tools/01-chapter6.markdown +1550 -0
  385. data/test/progit/pl/07-customizing-git/01-chapter7.markdown +1058 -0
  386. data/test/progit/pl/08-git-and-other-scms/01-chapter8.markdown +948 -0
  387. data/test/progit/pl/09-git-internals/01-chapter9.markdown +1382 -0
  388. data/test/progit/pl/translation-guidelines.txt +70 -0
  389. data/test/progit/pt-br/01-introduction/01-chapter1.markdown +256 -0
  390. data/test/progit/pt-br/02-git-basics/01-chapter2.markdown +1127 -0
  391. data/test/progit/pt-br/03-git-branching/01-chapter3.markdown +596 -0
  392. data/test/progit/pt-br/04-git-server/01-chapter4.markdown +888 -0
  393. data/test/progit/pt-br/05-distributed-git/01-chapter5.markdown +896 -0
  394. data/test/progit/pt-br/06-git-tools/01-chapter6.markdown +1122 -0
  395. data/test/progit/pt-br/07-customizing-git/01-chapter7.markdown +932 -0
  396. data/test/progit/pt-br/08-git-and-other-scms/01-chapter8.markdown +691 -0
  397. data/test/progit/pt-br/09-git-internals/01-chapter9.markdown +978 -0
  398. data/test/progit/pt-br/figures-dia/fig0101.dia +617 -0
  399. data/test/progit/pt-br/figures-dia/fig0102.dia +921 -0
  400. data/test/progit/pt-br/figures-dia/fig0103.dia +1468 -0
  401. data/test/progit/pt-br/figures-dia/fig0104.dia +1432 -0
  402. data/test/progit/pt-br/figures-dia/fig0105.dia +1924 -0
  403. data/test/progit/pt-br/figures-dia/fig0106.dia +562 -0
  404. data/test/progit/pt-br/figures-dia/fig0201.dia +776 -0
  405. data/test/progit/pt-br/figures-dia/fig0301.dia +2006 -0
  406. data/test/progit/pt-br/figures-dia/fig0302.dia +2148 -0
  407. data/test/progit/pt-br/figures-dia/fig0316.dia +1079 -0
  408. data/test/progit/pt-br/figures-dia/fig0322.dia +1142 -0
  409. data/test/progit/pt-br/figures-dia/fig0323.dia +1407 -0
  410. data/test/progit/pt-br/figures-dia/fig0324.dia +1603 -0
  411. data/test/progit/pt-br/figures-dia/fig0325.dia +2003 -0
  412. data/test/progit/pt-br/figures-dia/fig0326.dia +2013 -0
  413. data/test/progit/pt-br/figures-dia/fig0336.dia +786 -0
  414. data/test/progit/pt-br/figures-dia/fig0337.dia +1546 -0
  415. data/test/progit/pt-br/figures-dia/fig0338.dia +1755 -0
  416. data/test/progit/pt-br/figures-dia/fig0339.dia +1882 -0
  417. data/test/progit/pt-br/figures-dia/fig0501.dia +456 -0
  418. data/test/progit/pt-br/figures-dia/fig0502.dia +965 -0
  419. data/test/progit/pt-br/figures-dia/fig0503.dia +914 -0
  420. data/test/progit/pt-br/figures-dia/fig0511.dia +1201 -0
  421. data/test/progit/pt-br/figures-dia/fig0515.dia +1721 -0
  422. data/test/progit/pt-br/figures-dia/fig0702.dia +795 -0
  423. data/test/progit/pt-br/figures-dia/fig0703.dia +795 -0
  424. data/test/progit/pt-br/figures-dia/fig0901.dia +669 -0
  425. data/test/progit/pt-br/figures-dia/fig0902.dia +834 -0
  426. data/test/progit/pt-br/figures-dia/fig0903.dia +1483 -0
  427. data/test/progit/pt-br/figures-dia/fig0904.dia +1728 -0
  428. data/test/progit/ro/01-introduction/01-chapter1.markdown +257 -0
  429. data/test/progit/ru/01-introduction/01-chapter1.markdown +259 -0
  430. data/test/progit/ru/02-git-basics/01-chapter2.markdown +1155 -0
  431. data/test/progit/ru/03-git-branching/01-chapter3.markdown +598 -0
  432. data/test/progit/ru/04-git-server/01-chapter4.markdown +854 -0
  433. data/test/progit/ru/05-distributed-git/01-chapter5.markdown +897 -0
  434. data/test/progit/ru/06-git-tools/01-chapter6.markdown +1126 -0
  435. data/test/progit/ru/07-customizing-git/01-chapter7.markdown +938 -0
  436. data/test/progit/ru/08-git-and-other-scms/01-chapter8.markdown +691 -0
  437. data/test/progit/ru/09-git-internals/01-chapter9.markdown +977 -0
  438. data/test/progit/ru/Glossary +38 -0
  439. data/test/progit/ru/README +12 -0
  440. data/test/progit/ru/figures-dia/fig0101.dia +647 -0
  441. data/test/progit/ru/figures-dia/fig0102.dia +1009 -0
  442. data/test/progit/ru/figures-dia/fig0103.dia +1468 -0
  443. data/test/progit/ru/figures-dia/fig0104.dia +1432 -0
  444. data/test/progit/ru/figures-dia/fig0105.dia +1924 -0
  445. data/test/progit/ru/figures-dia/fig0106.dia +561 -0
  446. data/test/progit/ru/figures-dia/fig0201.dia +774 -0
  447. data/test/progit/ru/figures-dia/fig0322.dia +1182 -0
  448. data/test/progit/ru/figures-dia/fig0323.dia +1457 -0
  449. data/test/progit/ru/figures-dia/fig0324.dia +1698 -0
  450. data/test/progit/ru/figures-dia/fig0325.dia +2101 -0
  451. data/test/progit/ru/figures-dia/fig0326.dia +2111 -0
  452. data/test/progit/ru/figures-dia/fig0336.dia +786 -0
  453. data/test/progit/ru/figures-dia/fig0337.dia +1546 -0
  454. data/test/progit/ru/figures-dia/fig0338.dia +1755 -0
  455. data/test/progit/ru/figures-dia/fig0339.dia +1882 -0
  456. data/test/progit/ru/figures-dia/fig0501.dia +477 -0
  457. data/test/progit/ru/figures-dia/fig0502.dia +1063 -0
  458. data/test/progit/ru/figures-dia/fig0503.dia +915 -0
  459. data/test/progit/ru/figures-dia/fig0511.dia +1201 -0
  460. data/test/progit/ru/figures-dia/fig0515.dia +1741 -0
  461. data/test/progit/ru/figures-dia/fig0702.dia +851 -0
  462. data/test/progit/ru/figures-dia/fig0703.dia +851 -0
  463. data/test/progit/sr/01-introduction/01-chapter1.markdown +257 -0
  464. data/test/progit/summary.rb +29 -0
  465. data/test/progit/th/01-introduction/01-chapter1.markdown +257 -0
  466. data/test/progit/th/02-git-basics/01-chapter2.markdown +1126 -0
  467. data/test/progit/th/README.md +47 -0
  468. data/test/progit/tr/01-introduction/01-chapter1.markdown +258 -0
  469. data/test/progit/tr/02-git-basics/01-chapter2.markdown +1129 -0
  470. data/test/progit/tr/03-git-branching/01-chapter3.markdown +598 -0
  471. data/test/progit/tr/04-git-server/01-chapter4.markdown +73 -0
  472. data/test/progit/tr/05-distributed-git/01-chapter5.markdown +215 -0
  473. data/test/progit/uk/01-introduction/01-chapter1.markdown +522 -0
  474. data/test/progit/vi/01-introduction/01-chapter1.markdown +259 -0
  475. data/test/progit/vi/02-git-basics/01-chapter2.markdown +1172 -0
  476. data/test/progit/vi/03-git-branching/01-chapter3.markdown +598 -0
  477. data/test/progit/zh-tw/01-introduction/01-chapter1.markdown +259 -0
  478. data/test/progit/zh-tw/02-git-basics/01-chapter2.markdown +1183 -0
  479. data/test/progit/zh-tw/03-git-branching/01-chapter3.markdown +604 -0
  480. data/test/progit/zh-tw/04-git-server/01-chapter4.markdown +866 -0
  481. data/test/progit/zh-tw/05-distributed-git/01-chapter5.markdown +912 -0
  482. data/test/progit/zh-tw/06-git-tools/01-chapter6.markdown +1139 -0
  483. data/test/progit/zh-tw/07-customizing-git/01-chapter7.markdown +932 -0
  484. data/test/progit/zh-tw/08-git-and-other-scms/01-chapter8.markdown +689 -0
  485. data/test/progit/zh-tw/09-git-internals/01-chapter9.markdown +977 -0
  486. data/test/progit/zh/01-introduction/01-chapter1.markdown +259 -0
  487. data/test/progit/zh/02-git-basics/01-chapter2.markdown +1177 -0
  488. data/test/progit/zh/03-git-branching/01-chapter3.markdown +604 -0
  489. data/test/progit/zh/04-git-server/01-chapter4.markdown +866 -0
  490. data/test/progit/zh/05-distributed-git/01-chapter5.markdown +912 -0
  491. data/test/progit/zh/06-git-tools/01-chapter6.markdown +1125 -0
  492. data/test/progit/zh/07-customizing-git/01-chapter7.markdown +935 -0
  493. data/test/progit/zh/08-git-and-other-scms/01-chapter8.markdown +689 -0
  494. data/test/progit/zh/09-git-internals/01-chapter9.markdown +976 -0
  495. data/test/spec_tests.json +4382 -4070
  496. data/test/test_basics.rb +1 -1
  497. data/test/test_helper.rb +1 -0
  498. data/test/test_maliciousness.rb +4 -2
  499. data/test/test_pathological_inputs.rb +31 -30
  500. data/test/test_spec.rb +5 -4
  501. metadata +972 -4
@@ -0,0 +1,257 @@
1
+ # Першыя крокі #
2
+
3
+ Гэтая глава прысвечана пачатку працы з Git. Мы пачнем з тлумачэння асноў працы прылад кантролю версій, затым пяройдзем да таго як атрымаць працуючы Git ў сваёй сістэме і, урэшце, як наладзіць яго так, каб з ім можна было пачаць працаваць. Напрыканцы гэтай главы вы будзеце мець разуменне для чаго наогул прызначаны Git, чаму ім варта карыстацца і мець усе неабходныя наладкі дзеля гэтага.
4
+
5
+ ## Пра кантроль версій ##
6
+
7
+ Што такое кантроль версій і навошта ён патрэбны? Кантроль версій — гэта сістэма, якая запісвае змены, што адбыліся з файлам ці наборам файлаў з цягам часу, так што вы можаце вярнуцца да розных версій пазней. У прыкладах гэтай кнігі мы будзем працаваць з зыходнікамі праграмнага забеспечэння ў якасці файлаў, версіі якіх будуць кантралявацца, але, насамрэч, вы можаце выкарыстоўваць гэтую магчымасць практычна з любым тыпам файла, які існуе на вашым кампутары.
8
+
9
+ Калі вы графічны ці web дызайнер і маеце намер захоўваць кожную версію малюнкаў ці слаёў (што вам больш патрэбна), то выкарыстанне сістэмы кантролю версій (СКВ; Version Control System, VCS) гэта вельмі разумны выбар. Гэта дазволіць вам вярнуць файлы да папярэдняга стану, вярнуць увесь праект да папярэдняга стану, параўнаць змены паміж рознымі станамі, убачыць хто апошнім змяняў нешта, што можа выклікаць праблемы, хто прапанаваў змену і калі, і шмат іншага. Выкарыстанне СКВ у асноўным значыць, што калі вы сапсавалі нешта ці страцілі файлы, то гэта можна лёгка ўзнавіць. Як дадатак, гэта не запатрабуе вялікіх намаганняў і выдаткаў з вашага боку.
10
+
11
+ ### Лакальныя сістэмы кантролю версій ###
12
+
13
+ Шмат людзей ў якасці метаду кантролю версій выбірае капіяванне файлаў у іншую тэчку (магчыма, з датай у назве, калі чалавек досыць разумны). Гэты падыход вельмі распаўсюджаны з-за сваёй прастаты, але ён пакідае неверагодна шмат магчымасцяў для памылак. Вельмі лёгка забыцца ў якой тэчцы вы зараз і выпадкова запісаць не ў той файл, ці зкапіяваць зусім не туды, куды вы збіраліся.
14
+
15
+ Каб развязаць гэтую праблему праграмісты шмат часу таму распрацавлі лакальныя СКВ, якія выкарыстоўваюць простую базу дадзеных каб захоўваць ўсе змены ў файлах, версіі якіх адсочваюцца (гл. Малюнак 1-1).
16
+
17
+ Insert 18333fig0101.png
18
+ Малюнак 1-1. Схема лакальнага кантролю версій.
19
+
20
+ Адной з папулярных у той час СКВ была rcs, якая ўсё яшчэ пастаўляецца з вялікай колькасцю кампутараў. Нават папулярная аперацыйная сістэма Mac OS X усталёўвае rcs у складзе пакета Developer Tools. Праца гэтай прылады заснаваная на захаванні на дыску ў спецыяльным фармаце набораў латак (patch) (гэта запісы розніцы паміж дзьвума файламі) для кожнай змены файла. Гэта дапамагае вярнуць файл да любога з зафіксаваных станаў, паслядоўна накладыючы латкі адну за адной.
21
+
22
+ ### Цэнтралізаваныя сістэмы кантролю версій ###
23
+
24
+ Наступнай сур'ёзнай праблемай, з якой людзі сутыкнуліся была неабходнасць супрацоўнічаць з распрацоўшчыкамі за іншымі кампутарамі. Централізаваныя сістэмы кантролю версій (ЦСКВ) былі распрацаваныя каб развязаць гэтую праблему. Такія сістэмы як CVS, Subversion і Perforce складаюцца з сервера, на якім захоўваюцца ўсе дадзеныя па версіях файлаў, і некаторай колькасці кліенцкіх машын, якія атрымліваюць файлы з сервера. Шмат год такая схема з'яўлялася стандартам кантролю версій (гл. Малюнак 1-2).
25
+
26
+ Insert 18333fig0102.png
27
+ Малюнак 1-2. Схема цэнтралізаванага кантролю версій.
28
+
29
+ Гэты падыход мае шмат пераваг, асабліва ў параўнанні з лакальнымі СКВ. Напрыклад, усе дакладна ведаюць што асатнія робяць і што наогул адбываецца ў праекце. Адміністратары маюць зручную магчымасць кантролю за тым хто што можа зрабіць. І гэта значна прасцей, чым адміністраванне лакальных баз дадзеных СКВ на кожнай кліенцкай машыне.
30
+
31
+ Аднак, гэты падыход мае і некаторыя сур'ёзныя мінусы. Самы відавочны з іх — центральны сервер яўляе сабою пункт, крах якога цягне за сабою крах усёй сістэмы. Калі гэты сервер спыніць працу на гадзіну — у гэтую гадзіну ніхто не зможа абмяняцца з супрацоўнікамі вынікамі сваёй працы ці захаваць новую версію таго, над чым ён ці яна зараз працуе. Калі жосткі дыск, на якім змешчаная цэнтральная база дадзеных пашкоджаны, а актуальных рэзервовых копій няма, то вы згубіце абсалютна ўсё: усю гісторыю праекту, за выключэннем тых здымкаў, што карыстальнікі выпадкова мелі на сваіх лакальных кампутарах. Лакальныя СКВ пакутуюць на тую ж праблему: калі ты маеш усю гісторыю праекта толькі ў адным месцы, то ты рызыкуеш згубіць усё.
32
+
33
+ ### Размеркаваныя сістэмы кантролю версій ###
34
+
35
+ І вось тут у гульню ўступаюць размеркаваныя сістэмы кантролю версій (РСКВ). У РСКВ (такіх як Git, Mercurial, Bazaar ці Darcs) кліенты не толькі атрымліваюць апошнія здымкі файлаў: яны атрымліваюць поўную копію сховішча. Такім чынам, калі любы з сервераў праз які ідзе абмен вынікамі працы памрэ, то любое з кліенцкіх сховішчаў можа быць зкапіявана на сервер каб аднавіць усю інфармацыю. Кожнае сховішча на кожным з працоўных месцаў насамрэч поўная рэзервовая копія ўсіх дадзеных (гл. Малюнак 1-3).
36
+
37
+ Insert 18333fig0103.png
38
+ Малюнак 1-3. Схема размеркаванага кантролю версій.
39
+
40
+ Апроч таго, шмат якія з гэтых сістэм выдатна працуюць з некалькімі аддаленымі сховішчамі, так што вы можаце адначасова па-рознаму узаемадзейнічаць з некалькімі рознымі групамі людзей у межах аднаго праекта. Гэта дазваляе наладжваць розные тыпы паслядоўнасцяў дзеянняў, што немагчыма з цэнтралізаванымі сістэмамі, такімі як іерархічныя мадэлі.
41
+
42
+ ## Кароткая гісторыя Git ##
43
+
44
+ Як і шмат іншых вялікіх рэчаў у жыцці, Git пачынаўся з стваральнага разбурэння і палымяных спрэчак. Ядро Linux — праграмны праект з адкрытымі зыходнікамі даволі вялікага аб'ёму. На пряцягу большай часткі перыяду існавання ядра Linux змены ў ім распаўсюджваліся у выглядзе патчаў і архіваваных файлаў. У 2002 годзе праект распрацоўкі ядра Linux пачаў карыстацца BitKeeper — прапрыетарнай РСКВ
45
+
46
+ У 2005 годзе адносіны паміж суполкай распрацоўшчыкаў ядра Linux і камерцыйнай кампаніяй, што распрацоўвала BitKeeper сапсаваліся і бясплатна карыстацца гэтай утылітай стала немагчыма. Гэта запатрабавала ад суполкі распрацоўшчыкаў Linux (і, ў прыватнасці, Лінуса Торвальдса (Linus Torvalds), стваральніка Linux'а) стварыць іх уласную сістэму, заснаваную на некаторых з урокаў, якія яны вынеслі для сябе з досведу карыстання BitKeeper. Некаторыя з мэтаў новай сітэмы ніжэй:
47
+
48
+ * Хуткасць
49
+ * Просты дызайн
50
+ * Моцная падтрымка нелінейнай распрацоўкі (сотні паралельных галін)
51
+ * Цалкам размеркаваная
52
+ * Магчымасць эфектыўна працаваць з вялікімі праектамі, кшталту ядра Linux (хуткасць і памер дадзеных)
53
+
54
+ З часу свайго з'яўлення ў 2005 годзе Git развіваўся і сталеў каб быць лёгкім у выкарыстанні і пры гэтым захоўваць гэтыя першапачатковыя якасці. Ён неверагодна хуткі, вельмі эфектыўны ў працы з вялікімі праектамі і мае неверагодную сістэму кіравання галінамі для нелінейных праектаў (гл. главу 3).
55
+
56
+ ## Асновы Git ##
57
+
58
+ Такім чынам, што ж такое Git, калі ў двух словах? Гета вельмі важны для засваення раздзел, таму што калі вы зразумееце што такое Git і фундаментальныя асновы таго як ён працуе, то эфектыўнае выкарыстанне Git можа стаць значна больш простым для вас. Пад час вывучэння Git пастарайцеся не абапірацца на ўспаміны пра іншыя СКВ, кшталту Subversion і Perforce, гэта дапаможа пазбегнуць памылак і разгубленасці пад час выкарыстання гэтай прылады. Git захоўвае інфармацыю і успрымае яе вельмі непадобна на іншыя сістэмы, нават не гледзячы на даволі блізкае падабенства карыстальніцкага інтэрфейсу. Разуменне гэтых адрозненняў дапаможа прадухіліць памылкі і разгубленасць пад час работы з Git.
59
+
60
+ ### Здымкі, а не адрозненні ###
61
+
62
+ Асноўнае адрозненне Git ад любой іншай СКВ (уключаючы Subversion і кампанію) — тое як Git ўяўляе сабе дадзеныя, якіе захоўвае. Канцэптуальна, большасць іншых сістэм захоўвае інфармацыю ў выглядзе набор змяненнеў. Гэтыя сістэмы (CVS, Subversion, Perforce, Bazaar і гэтак далей) ставяцца да інфармацыі, якую яны захозваюць, як да набора адрозненняў для кожнага з файлаў у параўнанні з папярэднім станам, як гэта паказана на Малюнку 1-4.
63
+
64
+ Insert 18333fig0104.png
65
+ Малюнак 1-4. Іншыя сістэмы звычайна захоўваюць дадзеныя ў выглядзе набора зменаў для базавай версіі кожнага файла.
66
+
67
+ Git ўспрымае данныя ў сховішчы інакш. Замест таго, каб успрымаць іх як наборы зменаў, Git ставіцца да дадзеных хутчэй як да набора здымкаў стану невялікай файлавай стэмы. Кожны раз, калі вы захоўваеце дадзеныя вашага праекду ў Git, ён па-сутнасці, робіць здымак таго, як вашыя файлы выглядаюць ў гэты момант і спасылку на гэты здымак. Для павышэння эфектыўнасці, калі файл не змяняўся, то Git не захоўвае яго яшчэ раз, а проста робіць спасылку на яго папярэдні стан, які ўжо быў захаваны. Гіт успрымае дадзеныя больш падобна на тое, што паказана на Малюнку 1-5.
68
+
69
+ Insert 18333fig0105.png
70
+ Малюнак 1-5. Git захоўвае дадзеныя як здымкі стану праекта пэўнага часу.
71
+
72
+ Гэта вельмі сур'ёзна адрознівае Git ад практычна ўсіх іншых СКВ. Гэта вымушае Git пераглядзець амаль усе аспекты кіравання версіямі, якія большасць іншых сістэм узялі з сістэм папярэдняга пакалення. Гэта робіць Git больш падобным на невялікую файлавую сістэму з неверагодна магутнымі прыладамі, створанымі каб працаваць павер яе, чым на звычайную СКВ. Некаторыя з пераваг, які дае такі падыход да захоўвання дадзеных, мы разгледзім ў Раздзеле 3, пад час вывучэння працы з галінамі.
73
+
74
+ ### Практычна ўсе аперацыі выконваюцца лакальна ###
75
+
76
+ Большасць аперацый у Git патрабуюць для працы толькі лакальныя файлы і рэсурсы, бо звычайна інфармацыя з іншых кампутараў у сетцы не патрэбныя. Калі вы карысталіся ЦСКВ, дзе большасць аперацый маюць дадатковыя затрымкі, звязаныя з працай праз сець, то гэты аспект Git прымусіць думаць, што богі хуткасці блаславілі гэтую сістэмы неверагоднымі здольнасцямі. Большасць аперацый выглядае практычна імгненнымі, паколькі ўся гісторыя праекта захоўваецца непасрэдна на вашым лакальным дыску.
77
+
78
+ Напрыклад, каб паглядзець гісторыю праекта Git не трэба звяртацца да сервера, каб атрымаць гісторыю і адлюстраваць яе для вас — можна проста прачытаць яе непасрэдна з вашай лакальнай базы дадзеных. Гэта значыць, што вы убачыце гісторыю праекта практычна імгненна. Калі вы захацелі ўбачыць розніцу паміж бягучай версіяй файла і той, што была месяц таму, Git можа праглядзець файл месячнай даўніны і вылічыць розніцу паміж версіямі лакальна, замест таго капрасіць у сервера зрабіць гэта, альбо выцягваць старую версію з сервера і потым зноўку ж вылічваць розніцу лакальна.
79
+
80
+ Да таго ж, гэта значыць што вельмі няшмат чаго нельга зрабіць калі вы па-за сеткай ці VPN. Калі вы ў самалёце ці ў цягніку і хочаце крыху папрацаваць, то вы можаце захоўваць праект ў СКВ (ці рабіць каміты, як яшчэ кажуць) без аніякіх праблем і перашкод ажно пакуль не з'явіцца сетка, з дапамогай якой вы зможаць выгрузіць змены. Калі вы прыйшлі дадому не і здолелі наладзіць VPN, вы ўсё яшчэ ў стане працаваць. У многіх іншых сістэмах вельмі цяжка, калі наогул магчыма рабіць так. У Perforce, напрыклад, вы няшмат што можаць зрабіць, калі няма сувязі з серверам, а ў Subversion і CVS вы можаце рэдактаваць файлы, але не будзеце ў стане захаваць змены ў сваю базу дадзеных (паколькі сувязі з базай дадзеных няма). Можа гэта і не выглядае вялікім дасягненнем, але вы будзеце здзіўленыя, убачыўшы наколькі гэта можа змяніць справу.
81
+
82
+ ### Git падтрымлівае цэласнасць ###
83
+
84
+ Для ўсяго ў Git'е вылічваецца кантрольная сума перад тым, як захаваць і затым гэтая кантрольная сума выкарыстоўваецца як спалылка на аб'ект. Гэта значыць, што немагчыма змяніць змест якога-небудзь файла ці тэчкі, каб Git не даведаўся пра гэта. Гэты функцыянал убудаваны ў Git на самых нізкіх узроўнях і з'яўляецца неад'емнай часткай яго філасофіі. Вы не можаце згубіць інфармацыю пры перадачы ці атрыманні пашкоджаннага файла без таго, габ Git не змог выявіць гэтага.
85
+
86
+ Механізм, які выкарыстоўвае Git для вылічэнне кантрольнай сумы называецца SHA-1 хэш. Гэта страка з 40 знакаў, складаючаяся з шастнадцацірычных знакаў (0-9 і a-f) і вылічваецца па зместу файла ці тэчкі, знаходзячыхся ў Git'е. SHA-1 хэш выглядае прыкладна так:
87
+
88
+ 24b9da6552252987aa493b52f8696cd6d3b00373
89
+
90
+ Вы будзеце бачыць гэтыя хэшы паўсюль у Git'е тамушта ён выкарыстоўвае іх так шмат. Фактычна, Git захоўвае ўсё не па імені, у базе дадзеных адрасацыя адбываецца па значэнні хэша кантэнту.
91
+
92
+ ### Git як правіла, толькі дадае дадзеныя ###
93
+
94
+ Калі вы робіце дзеянні ў Git, амаль усе з іх толькі дадаюць дадзеныя ў базу дадзеных. Вельмі цяжка як-небуць прымусіць сістэму зрабіць нешта, што немагчыма адмяніць або прымусіць яе сцерці дадзеныя. Як і ў любой СКВ, вы можаце страціць або сапсаваць змены, якія вы яшчэ не зафіксавалі; але пасля таго як вы зафіксавалі здымак ў Git, вельмі цяжка страціць, асабліва калі вы рэгулярна змяшчаеце вашу базу дадзеных на іншы рэпазітар.
95
+
96
+ Гэта робіць працу з Git радасцю, таму што мы ведаем, што можам эксперыментаваць без небяспекі моцна сапсаваць становішча. Для больш глыбокага погляд на тое, як Git захоўвае свае дадзеныя і як вы можаце аднавіць дадзеныя, якія здаюцца страчанымі, глядзіце "Пад вокладкай" у главе 9.
97
+
98
+ ### Тры станы ###
99
+
100
+ Цяпер, звярніце ўвагу. Гэта галоўнае, што вам трэба памятаць аб Git, калі вы хочаце, каб астатак вашага навучальнага працэсу прайшоў гладка. У Git ёсць тры асноўныя станы, у якіх вашы файлы могуць знаходзіцца: зафіксаваны, зменены, і падрыхтаваныя. Зафіксаваны значыць, што дадзеныя бяспечна захаваны ў вашу лакальную базу дадзеных. Зменены значыць, што вы змянілі файл, але яшчэ не зафіксавалі ў вашай базе дадзеных. Падрыхтаваны значыць, што вы адзначылі зменены файл для ўключэння ў наступны каміт.
101
+
102
+ Такім чынам ёсць тры часткі у праекце з выкарыстаннем Git: каталог Git (the Git directory), працоўны катлог (the working directory), і вобласць падрыхтаваных файлаў (the staging area).
103
+
104
+ Insert 18333fig0106.png
105
+ Малюнак 1-6. Працоўны каталог (the working directory), вобласць падрыхтаваных файлаў(the staging area), і каталог Git(the Git directory).
106
+
107
+ У каталозе Git захоўваюцца метаданныя і аб'екты базы дадзеных вашага праекту. Гэта найбольшая важная частка Git, і гэта менавіта тое, што капіруецца, калі вы кланіруеце рэпазітар з другога кампутара.
108
+
109
+ Працоўны каталог - гэта копія пэўная версіі праекта. Гэтыя файлы вымаюцца з сціснутай базы дадзеных у каталогу Git і размяшчаюцца на дыску, каб вы карысталіся імі ці змянялі.
110
+
111
+ Вобласць падрыхтаваных файлаў - гэта проста файл, звычайна змешчаны у каталогу Git, які захоўвае інфармацыю аб тым, што будзе выкарастана ў наступным каміце. Яго часам называюць індэксам, але становіцца стандартам называць яго вобласцю падрыхтаваных файлаў.
112
+
113
+ Стандартня праца з Git выглядае прыкладна так:
114
+
115
+ 1. Вы змяняеце файлы ў вашым працоўным каталогу.
116
+ 2. Вы падрыхтоўваеце файлы, дабаўляючы іх здымак у вашу вобласць падрыхтаваных файлаў.
117
+ 3. Вы робіце каміт(фіксуеце), у выніку чаго здымак з вобласці падрыхтаваных файлаў захоўваецца ў вашым каталогу Git.
118
+
119
+ Калі бягучая версія файла супадае с той, што ў каталогу Git, файл знаходзіцца ў зафіксаваным стане. Калі файл зменены, але толькі дададзены ў вобласць падрыхтаваных файлаў, такі файл знаходзіцца ў падрыхтаваным стане. І калі файл был зменены пасля выгрузкі с базы дадзеных, але не дадзены ў вобласць падрыхтаваных файлаў, ён знаходзіцца ў змененым стане. У главе 2 вы даведаецеся больш аб гэтых станах і як выкарыстаць іх перавагі ці прапусціць частку падрытоўкі ўвогуле.
120
+
121
+ ## Усталёўка Git ##
122
+
123
+ Давайце пачнем выкарыстоўваць Git. Першае, што вам трэба зрабіць - гэта ўсталяваць яго.Вы можаце зрабіць гэта двумя спосабамі; ёсць два асноўных - усталяваць з зыходных файлаў ці ўсталяваць існуючы пакет для вашай платформы.
124
+
125
+ ### Усталёўка з зыходных файлаў ###
126
+
127
+ Калі ў вас ёсць магчымасць, звычайна лепша ўсталяваць Git з зыходных файлаў, таму што вы атрымаеце найноўшую версію. Кожная версія Git звычайна ўключае карысныя паляпшэнні ітэрфейса карытсальніка, таму ўсталёўка з зыходных файлаў - найлепшы шлях, калі вы не маеце праблем з кампіляцыяй праграм з зыходных фалаў. Таксама многія дыстрыбутывы Linux змяшчаюць вельмі старыя пакеты; такім чынам толькі калі вы не выкарыстоўваеце вельмы свежы дыстрыбутыў ці вы на эксперэментальнай ветцы, усталёўка з зыходных файлаў - лепшы выбар.
128
+
129
+ Каб усталяваць Git, вам неабходна мець наступныя бібліятэкі, ад якіх Git залежыць: curl, zlib, openssl, expat, і libiconv. На прыклад, калі вы карыстаецеся сістэмай, якая змяшчае yum (як Fedora) ці apt-get (як сістэмы заснаваныя на Denian), вы можаце выкарыстаць адну з наступных каманд для ўсталёўкі ўсіх залежнасцей:
130
+
131
+ $ yum install curl-devel expat-devel gettext-devel \
132
+ openssl-devel zlib-devel
133
+
134
+ $ apt-get install libcurl4-gnutls-dev libexpat1-dev gettext \
135
+ libz-dev libssl-dev
136
+
137
+ Калі ў вас ёсць усе неабходныя залежнасці, вы можаце ісці далей і спампаваць найноўшы здымак з вэб сайту Git:
138
+
139
+ http://git-scm.com/download
140
+
141
+ Затым скампіляваць і ўсталяваць:
142
+
143
+ $ tar -zxf git-1.6.0.5.tar.gz
144
+ $ cd git-1.6.0.5
145
+ $ make prefix=/usr/local all
146
+ $ sudo make prefix=/usr/local install
147
+
148
+ Пасля гэтага вы можаце атрымаць пракет Git праз ваш усталяваны Git для атрымання абнаўленняў:
149
+
150
+ $ git clone git://git.kernel.org/pub/scm/git/git.git
151
+
152
+ ### Усталёўка на Linux ###
153
+
154
+ Калі вы жадаеце ўсталяваць Git на Linux праз бінарны ўстаноўшчык, вы можаце зрабіць гэта з дапамогай звычайнага менеджэра пакетаў вашага дыстрыбутыву. Калі ў вас Fedora, вы можаце скарыстацца yum:
155
+
156
+ $ yum install git-core
157
+
158
+ Ці калі ў вас дыстрыбутыў на базе Debian, напрыклад Ubuntu, паспрабуйце apt-get:
159
+
160
+ $ apt-get install git
161
+
162
+ ### Усталёўка на Mac ###
163
+
164
+ Ёсць два лёгкіх пуці ўсталёкі Git на Mac. Самы лёгкі - выкарыстаць графічны ўсталёўшчык, які вы можаце спампаваць са старонкі SourceForge(гл. Малюнак 1-7):
165
+
166
+ http://sourceforge.net/projects/git-osx-installer/
167
+
168
+ Insert 18333fig0107.png
169
+ Малюнак 1-7. Усталёўчшык Git на OS X.
170
+
171
+ Іншы распаўсюджаны спосаб - гэта ўсталёука праз MacPorts (`http://www.macports.org`). Калі ў вас ёсць MacPorts, усталюйце Git гэтак:
172
+
173
+ $ sudo port install git-core +svn +doc +bash_completion +gitweb
174
+
175
+ Вам не трэба ўсталёўваць усе дадткі, але верагодна вы захочаце уключыць +svn у выпадку, калі вам калі-небудзь прыйдзеца карыстацца Git на Subversion рэпазітарах (глядзі Главу 8).
176
+
177
+ ### Усталёўка ў Windows ###
178
+
179
+ Усталёўка Git на Windows вельмі лёгкая. Працэдура ўсталёўкі праекта msysGit адна з найбольш лёгкіх. Проста спампуйце exe-файл інсталятара са старонкі GitHub, і выканайце яго:
180
+
181
+ http://msysgit.github.com/
182
+
183
+ Пасля яго ўсталёўкі вы маеце як кансольную версію (уключаюцы SSH кліент, які спатрэбіцца ў далейшым), так і стандартную графічную.
184
+
185
+ ## Першапачатковыя налады Git ##
186
+
187
+ Цяпер, калі ў вашай сістэме ёсць Git, вы захочаце зрабіць некалькі рэчаў для наладкі вашага Git. Вы павінны зрабіць гэта толькі адзін раз - пры абнаўленні налады застаюцца. Вы можаце змяніць іх у любы час, выканаўшы каманды яшчэ раз.
188
+
189
+ Git пастаўляецца з утылітай, якая называецца git config, якая дае магчымасць вам праглядаць і ўсталёўваць параметры наладкі, якія кантралююць усе аспекты працы і знешняга выгляду Git. Гэтыя параметры могуць змяшчацца ў трох месцах:
190
+
191
+ * файл `/etc/gitconfig` : Змяшчае значэнні для ўсіх карыстальнікаў вашай сістэмы і ўсіх іх рэпазітараў. Калі вы перадаеце параметр ` --system` утыліце `git config`, яна чытае і запісвае параметры ў гэта файл.
192
+ * файл `~/.gitconfig` : Выкарыстоўваецца для вашага ўліковага запісу. Вы можаце запісваць і чытаць з гэтага файла пры ўказанні параметра `--global`.
193
+ * канфігурацыйны файл у каталогу Git (гэта `.git/config`) у тым рэпазітары, які вы выкарыстоўваеце ў данны момант: вызначае параметры для канкрэтнага гэтага рэпазітару. Кожны ўзровень змяняе значэнні папярэдняга ўзроўню, такім чынам значэнні ў `.git/config` перакрываюць адпаведныя ў `/etc/gitconfig`.
194
+
195
+ У Windows Git шукае файл `.gitconfig` у каталогу`$HOME` directory (`C:\Documents and Settings\$USER` для большасці карастыльнікаў). Таксама ён шукае /etc/gitconfig, але ўжо адносна карнявога каталогу MSys, які знаходзіцца там, дзе вы вырашылі ўсталяваць Git.
196
+
197
+ ### Ваша ідэнтыфікацыя ###
198
+
199
+ Першае, што вам трэба зрабіць, калі вы ўсталявалі Git, - задаць ваша імя і адрас e-mail. Гэта важна таму, што кожны каміт у Git выкарыстоўвае гэтую інфармацыю, і яна ўключаецца ў каміты, перадаваемыя вамі, і далей ня можа быць зменена:
200
+
201
+ $ git config --global user.name "John Doe"
202
+ $ git config --global user.email johndoe@example.com
203
+
204
+ Зноў-такі, вам трэба зрабіць гэта толькі адзін раз, калі перадалі параметр `--global`, таму шта Git будзе заўжды выкарыстоўваць гэту інфармацыю для ўсяго, што вы будзеце рабіць на гэтай сістэме. Калі вы хочаце змяніць гэта на іншае імя ці адрас e-mail для канкрэтнага праекта, вы можаце выканаць каманду без параметра `--global`, калі вы знаходзіцеся ў каталогу праекта.
205
+
206
+ ### Ваш рэдактар ###
207
+
208
+ Цяпер, калі вы наладзілі данныя ідэнтыфікацыі, вы можаце наладзіць тэкставы рэдактар, які будзе выкарыстоўвацца, калі Git'у трэба, каб вы ўвялі паведамленне. Па змаўчанні Git выкарыстоўвае стандартны рэдактар вашай сістэмы, звычайна гэта Vi ці Vim. Калі вы жадаеце выкарыстаць іншы тэкставы рэдактар, напрыклда Emacs, вы можаце зрабіць наступнае:
209
+
210
+ $ git config --global core.editor emacs
211
+
212
+ ### Ваша утыліта параўнання ###
213
+
214
+ Яшчэ адна карысная налада, якую вы мажліва хочаце змяніць, - гэта стандартная утыліта для параўнання, якая выкарыстоўваецца для вырашэння канфліктаў зліцця. Напрыклад, вы хочаце выкарыстоўваць vimdiff:
215
+
216
+ $ git config --global merge.tool vimdiff
217
+
218
+ Git падтрымлівае kdiff3, tkdiff, meld, xxdiff, emerge, vimdiff, gvimdiff, ecmerge і opendiff як дапушчальныя утыліты параўнання. Таксама вы можаце наладзіць іншую утыліту; больш аб гэтым напісана ў Главе 7.
219
+
220
+ ### Праверка вашых наладак ###
221
+
222
+ Калі вы хочаце праверыць вышы налады, вы можаце выкарыстаць каманду `git config --list` для вываду ўсіх наладак Git, якія даступны на данным узроўні:
223
+
224
+ $ git config --list
225
+ user.name=Scott Chacon
226
+ user.email=schacon@gmail.com
227
+ color.status=auto
228
+ color.branch=auto
229
+ color.interactive=auto
230
+ color.diff=auto
231
+ ...
232
+
233
+ Вы можаце бачыць параметры больш аднаго разу, бо Git счытвае аднолькавыя параметры з розных файлаў (`/etc/gitconfig` і `~/.gitconfig` для прыкладу). У такім выпадку Git выкарыстоўвае апошняе значэнне для кожнага знайдзеннага параметра.
234
+
235
+ Таксама вы можаце праверыць што для Git з'яўляецца значэннем для канкрэтнага параметра, выканаўшы `git config {параметр}`:
236
+
237
+ $ git config user.name
238
+ Scott Chacon
239
+
240
+ ## Атрыманне даведкі ##
241
+
242
+ Калі вам патрэбна даведка пры выкарыстанні Git, ёсць тры спосабы для атрымання старонкі кіраўніцтва для любой каманды Git:
243
+
244
+ $ git help <дзеяслоў>
245
+ $ git <дзеяслоў> --help
246
+ $ man git-<дзеяслоў>
247
+
248
+ Напрыклад вы можаце атрымать даведку па камандзе config, выканаўшы
249
+
250
+ $ git help config
251
+
252
+ Гэты каманды выдатны тым, што вы можаце выкарыстаць іх усюды, нават калі вы не падключаны да сеткі.
253
+ Калі старонкі кіраўніцтва і гэтай кнігі не дастаткова і вы маеце патрэбу ў асабістай дапамозе, вы можаце паспрабаваць канал `#git` ці `#github` IRC серверы Freenode (irc.freenode.net). Гэтыя каналы амаль заўсёды напоўнены сотнямі людзей, якія добра ведаюць Git і звычайна гатовы дапамагчыare often willing to help.
254
+
255
+ ## Вынікі ##
256
+
257
+ Цяпер у вас павінна быць агульнае разуменне што такое Git і чым ён адрозніваецца ад СКВ, якія вы магчыма выкарыстоўвалі. Таксама вы павінны мець працуючую версію Git у вашай сістэме з вашымі наладамі ідэнтыфікацыі. Прыйшоў час вывучаць некаторыя асновы Git.
@@ -0,0 +1,1126 @@
1
+ # Асновы Git #
2
+
3
+ Калі вы жадаеце прачытаць адну главу і пацаць карыстацца Git, то гэта глава - тое, што вам патрэбна. Гэта глава ахоплівае ўсе базывая каманды, якія вам спатрэбяцца пры рашэнні пераважнай большасці задач, узнікаючых пры працы з Git. Пасля вывучэння главы вы павінны ўмець наладзіць і ініцыялізаваць рэпазітар, пачынаць і супыняць версійны кантроль файлаў, падрыхтоўваць і фіксаваць змяненні. Таксама мы пакажам вам як наладзіць Git на ігнараванне пэўных файлаў і шаблонаў файлаў, як адмяніць хутка і лёгка памылковыя змены, як праглядзець гісторую вашага праекта і праглядзець змены паміж камітамі(commit), як выкладываць(push) і забіраць (pull) змяненні з выдаленага(remote) рэпазітара.
4
+
5
+ ## Стварэнне рэпазітара Git ##
6
+
7
+ Вы можаце атрымаць рэпазітар Git двума асноўнымі падыходамі. Першы - імпарт уснуючага праекта ці каталогу ў Git. Другі - кланіраванне існуючага рэпазітара Git з іншага сервера.
8
+
9
+ ### Стварэнне рэпазітара ў існуючым каталогу ###
10
+
11
+ Калі вы жадаеце пачаць версійны кантроль існуючага праекта праз Git, вам патрэба перайсці ў каталог праекта і ўвесці
12
+
13
+ $ git init
14
+
15
+ У выніку створыцца падкаталог з назвай `.git`, у якім змяшчаюцца ўсе неабходныя файлы рэпазітара - аснову рапазітара Git. На гэтым этапе ваш праект яшчэ не знаходзіцца пад версійным кантролем. (Глядзіце *Главу 9* для больш поўнай інфармацыі якія дакладна файлы змяшчаюцца ў каталогу `.git`, які вы толькі стварылі.
16
+
17
+ Калі вы хочаце пачаць версійны кантроль над існуючымі файламі (у адрозненні ад пустога каталога), вам варта праіндэксаваць гэтыя файлы і зрабіць першую фіксацыю зменаў(першы каміт). Вы можаце зрабіць гэта з дапамогай некалькі каманда `git add`, якія ўказваюць файлы, якія вы хочаце праіндэксаваць, затым выкарыстайце каманду commit:
18
+
19
+ $ git add *.c
20
+ $ git add README
21
+ $ git commit -m 'initial project version'
22
+
23
+ Вы разгледзем што гэтыя каманды робяць праз хвіліну. На гэты момант у вас ёсць рэпазітар Git з праіндэксаванымі файламі і першым камітам.
24
+
25
+ ### Кланіраванне існуючага рэпазітара ###
26
+
27
+ Калі вы жадаеце атрымаць копію існуючага рэпазітара, на прыклад, праект, у якім вы жадаеце ўдзельнічаць, патрэбная вам каманда - `git clone`. Калі вы знаёмы з іншымі СКВ, такімі як Subversion, вы заўважыце, што каманда называецца `clone`, а не `checkout`. Гэта важнае адрозненне - Git атрымлівае копію амаль усіх данных, якія ёсць на серверы. Кожная версія кожнага файла з гісторыі праекта забіраецца (pulled), калі вы выконваеце `git clone`. Фактычна, калі ваш серверны дыск пашкоджаны, вы можаце выкарыстаць любою з копій любога кліента каб узнаціць сервер да стану, у якім ён быў кланіраваны (вы можаце згубіць некаторыя серверныя правілы і падобнае да іх, але ўсе дадзенныя пад версіённым кантролем будуць захаваны - больш у *Главе 4*).
28
+
29
+ Кланіраванне рэпазітара адбываецца з дапамогай каманды `git clone [url]`. Напрыклад, калі вы жадаеце скланіраваць бібліятэку Ruby Git, вядомую як Grit, вы можаце зрабіць так:
30
+
31
+ $ git clone git://github.com/schacon/grit.git
32
+
33
+ У выніку ствараецца каталог з назвай `grit`, ініцыялізуя ў ім каталог `.git`, пампуе ўсе дадзеныя гэтага рэпазітара і стварае (checks out) працоўную копію апошняй версіі. Калі вы зойдзеце ў каталог `grit`, вы ўбачыце там файлы праекта гатовыя да працы ці выкарыстання. Калі вы жадаеце кланіраваць рэпазітар у каталог, які завецца інакш чым grit, вы можаце пазначыць гэта ў якасці наступнага параметра каманднай стракі:
34
+
35
+ $ git clone git://github.com/schacon/grit.git mygrit
36
+
37
+ Гэта каманда робіць тоеж, што і папярэдняя, толькі выходны каталог называецца `mygrit`.
38
+
39
+ Git падтрымлівае некалькі транспартных пратаколаў, якімі вы можаце карыстацца. У папярэднім прыкладзе выкарыстоўваецца пратакол `git://`, але вы таксама можаце сустрэць `http(s)://` ці `user@server:/path.git`, якія выкарыстоўваюць транспартны пратакол SSH. У *Главе 4* прадстаўлены ўсе магчымыя налады сервера для доступу да вашага рэпазітару Git, вартасці і недахопы кожнага.
40
+
41
+ ## Запіс зменаў у рэпазітар ##
42
+
43
+ Такім чынам у вас ёсць сапраўдны рэпазітар Git і працоўная копія файлаў праекта. Вам трэба зрабіць некаторыя змены і зафіксаваць "здымкі" станаў (snapshots) гэтых зменаў у вашым рэпазітары кожны раз, калі праект дасягне таго стану, які вы захочаце захаваць.
44
+
45
+ Памятайце, што кожны файл у вашым працоўным каталогу можа быць у адным з двух станаў: *адсочваемы*(*tracked*) ці *неадсочваемы*(*untracked*). *Адсочваемыя* файлы - гэта файлы, якія былі ў апошнім "здымку" праекта(snapshot); ямы могуць быць *нязмененыя*(*unmodified*), *змененыя*(*modified*) ці *падрыхтаваныя*(*staged*). *Неадсочваемыя* файлы - гэта ўсё астатнее, файлы ў вашым працоўным каталогу, якія не былі ў вашым апошнім "здымку" і не знаходзяцца ў вобласці падрыхтаваных файлаў. Калі вы ў першы раз кланіруеце рэпазітар, усе вашыя файлы будуць адсочваемыя і немадыфікаванымі таму што вы іх толькі што ўзялі са сховішча і яшчэ не мянялі нічога.
46
+
47
+ Як толькі вы зменіце файлы, Git будзе разглядаць іх як мадыфікаваныя, таму што вы змянілі іх з моманту апошняга каміта. Вы *падрыхтоўваеце* гэтыя мадыфікаваныя файлы і затым фіксуеце ўсе вашы падрыхтаваныя змены, затым цыкл паўтараецца. Гэта жыццёвы цыкл адлюстраваны на Малюнку 2-1.
48
+
49
+ Insert 18333fig0201.png
50
+ Малюнак 2-1. Жыццевы цыкл станаў вашых файлаў.
51
+
52
+ ### Праверка стану вашых файлаў ###
53
+
54
+ Галоўная прылада для вызначэння якія файлы ў якім стане - гэта каманда `git status`. Калі вы выканаеце гэтаую каманду адразу пасля кланавання, вы павінны ўбачыць нешта падобнае да гэтага:
55
+
56
+ $ git status
57
+ # On branch master
58
+ nothing to commit, working directory clean
59
+
60
+ Гэта значыць, што ў вас чысты працоўны каталог, іншымі словамі - адсутнічаюць мадыфікаваныя адсочваемыя файлы. Git таксама не знайшоў якія-небудзь неадсочваемыя файлы, у зваротным выпадку яны былі б пералічаны тут. У канцы каманда паказвае вам на якой ветцы вы знаходзіцеся. This means you have a clean working directory — in other words, there are no tracked and modified files. Git also doesn’t see any untracked files, or they would be listed here. Finally, the command tells you which branch you’re on. For now, that is always `master`, which is the default; you won’t worry about it here. The next chapter will go over branches and references in detail.
61
+
62
+ Let’s say you add a new file to your project, a simple README file. If the file didn’t exist before, and you run `git status`, you see your untracked file like so:
63
+
64
+ $ vim README
65
+ $ git status
66
+ # On branch master
67
+ # Untracked files:
68
+ # (use "git add <file>..." to include in what will be committed)
69
+ #
70
+ # README
71
+ nothing added to commit but untracked files present (use "git add" to track)
72
+
73
+ You can see that your new README file is untracked, because it’s under the “Untracked files” heading in your status output. Untracked basically means that Git sees a file you didn’t have in the previous snapshot (commit); Git won’t start including it in your commit snapshots until you explicitly tell it to do so. It does this so you don’t accidentally begin including generated binary files or other files that you did not mean to include. You do want to start including README, so let’s start tracking the file.
74
+
75
+ ### Tracking New Files ###
76
+
77
+ In order to begin tracking a new file, you use the command `git add`. To begin tracking the README file, you can run this:
78
+
79
+ $ git add README
80
+
81
+ If you run your status command again, you can see that your README file is now tracked and staged:
82
+
83
+ $ git status
84
+ # On branch master
85
+ # Changes to be committed:
86
+ # (use "git reset HEAD <file>..." to unstage)
87
+ #
88
+ # new file: README
89
+ #
90
+
91
+ You can tell that it’s staged because it’s under the “Changes to be committed” heading. If you commit at this point, the version of the file at the time you ran `git add` is what will be in the historical snapshot. You may recall that when you ran `git init` earlier, you then ran `git add (files)` — that was to begin tracking files in your directory. The `git add` command takes a path name for either a file or a directory; if it’s a directory, the command adds all the files in that directory recursively.
92
+
93
+ ### Staging Modified Files ###
94
+
95
+ Let’s change a file that was already tracked. If you change a previously tracked file called `benchmarks.rb` and then run your `status` command again, you get something that looks like this:
96
+
97
+ $ git status
98
+ # On branch master
99
+ # Changes to be committed:
100
+ # (use "git reset HEAD <file>..." to unstage)
101
+ #
102
+ # new file: README
103
+ #
104
+ # Changes not staged for commit:
105
+ # (use "git add <file>..." to update what will be committed)
106
+ #
107
+ # modified: benchmarks.rb
108
+ #
109
+
110
+ The `benchmarks.rb` file appears under a section named “Changes not staged for commit” — which means that a file that is tracked has been modified in the working directory but not yet staged. To stage it, you run the `git add` command (it’s a multipurpose command — you use it to begin tracking new files, to stage files, and to do other things like marking merge-conflicted files as resolved). Let’s run `git add` now to stage the `benchmarks.rb` file, and then run `git status` again:
111
+
112
+ $ git add benchmarks.rb
113
+ $ git status
114
+ # On branch master
115
+ # Changes to be committed:
116
+ # (use "git reset HEAD <file>..." to unstage)
117
+ #
118
+ # new file: README
119
+ # modified: benchmarks.rb
120
+ #
121
+
122
+ Both files are staged and will go into your next commit. At this point, suppose you remember one little change that you want to make in `benchmarks.rb` before you commit it. You open it again and make that change, and you’re ready to commit. However, let’s run `git status` one more time:
123
+
124
+ $ vim benchmarks.rb
125
+ $ git status
126
+ # On branch master
127
+ # Changes to be committed:
128
+ # (use "git reset HEAD <file>..." to unstage)
129
+ #
130
+ # new file: README
131
+ # modified: benchmarks.rb
132
+ #
133
+ # Changes not staged for commit:
134
+ # (use "git add <file>..." to update what will be committed)
135
+ #
136
+ # modified: benchmarks.rb
137
+ #
138
+
139
+ What the heck? Now `benchmarks.rb` is listed as both staged and unstaged. How is that possible? It turns out that Git stages a file exactly as it is when you run the `git add` command. If you commit now, the version of `benchmarks.rb` as it was when you last ran the `git add` command is how it will go into the commit, not the version of the file as it looks in your working directory when you run `git commit`. If you modify a file after you run `git add`, you have to run `git add` again to stage the latest version of the file:
140
+
141
+ $ git add benchmarks.rb
142
+ $ git status
143
+ # On branch master
144
+ # Changes to be committed:
145
+ # (use "git reset HEAD <file>..." to unstage)
146
+ #
147
+ # new file: README
148
+ # modified: benchmarks.rb
149
+ #
150
+
151
+ ### Ignoring Files ###
152
+
153
+ Often, you’ll have a class of files that you don’t want Git to automatically add or even show you as being untracked. These are generally automatically generated files such as log files or files produced by your build system. In such cases, you can create a file listing patterns to match them named `.gitignore`. Here is an example `.gitignore` file:
154
+
155
+ $ cat .gitignore
156
+ *.[oa]
157
+ *~
158
+
159
+ The first line tells Git to ignore any files ending in `.o` or `.a` — *object* and *archive* files that may be the product of building your code. The second line tells Git to ignore all files that end with a tilde (`~`), which is used by many text editors such as Emacs to mark temporary files. You may also include a `log`, `tmp`, or `pid` directory; automatically generated documentation; and so on. Setting up a `.gitignore` file before you get going is generally a good idea so you don’t accidentally commit files that you really don’t want in your Git repository.
160
+
161
+ The rules for the patterns you can put in the `.gitignore` file are as follows:
162
+
163
+ * Blank lines or lines starting with `#` are ignored.
164
+ * Standard glob patterns work.
165
+ * You can end patterns with a forward slash (`/`) to specify a directory.
166
+ * You can negate a pattern by starting it with an exclamation point (`!`).
167
+
168
+ Glob patterns are like simplified regular expressions that shells use. An asterisk (`*`) matches zero or more characters; `[abc]` matches any character inside the brackets (in this case `a`, `b`, or `c`); a question mark (`?`) matches a single character; and brackets enclosing characters separated by a hyphen(`[0-9]`) matches any character in the range (in this case 0 through 9) .
169
+
170
+ Here is another example `.gitignore` file:
171
+
172
+ # a comment - this is ignored
173
+ # no .a files
174
+ *.a
175
+ # but do track lib.a, even though you're ignoring .a files above
176
+ !lib.a
177
+ # only ignore the root TODO file, not subdir/TODO
178
+ /TODO
179
+ # ignore all files in the build/ directory
180
+ build/
181
+ # ignore doc/notes.txt, but not doc/server/arch.txt
182
+ doc/*.txt
183
+
184
+ ### Viewing Your Staged and Unstaged Changes ###
185
+
186
+ If the `git status` command is too vague for you — you want to know exactly what you changed, not just which files were changed — you can use the `git diff` command. We’ll cover `git diff` in more detail later; but you’ll probably use it most often to answer these two questions: What have you changed but not yet staged? And what have you staged that you are about to commit? Although `git status` answers those questions very generally, `git diff` shows you the exact lines added and removed — the patch, as it were.
187
+
188
+ Let’s say you edit and stage the `README` file again and then edit the `benchmarks.rb` file without staging it. If you run your `status` command, you once again see something like this:
189
+
190
+ $ git status
191
+ # On branch master
192
+ # Changes to be committed:
193
+ # (use "git reset HEAD <file>..." to unstage)
194
+ #
195
+ # new file: README
196
+ #
197
+ # Changes not staged for commit:
198
+ # (use "git add <file>..." to update what will be committed)
199
+ #
200
+ # modified: benchmarks.rb
201
+ #
202
+
203
+ To see what you’ve changed but not yet staged, type `git diff` with no other arguments:
204
+
205
+ $ git diff
206
+ diff --git a/benchmarks.rb b/benchmarks.rb
207
+ index 3cb747f..da65585 100644
208
+ --- a/benchmarks.rb
209
+ +++ b/benchmarks.rb
210
+ @@ -36,6 +36,10 @@ def main
211
+ @commit.parents[0].parents[0].parents[0]
212
+ end
213
+
214
+ + run_code(x, 'commits 1') do
215
+ + git.commits.size
216
+ + end
217
+ +
218
+ run_code(x, 'commits 2') do
219
+ log = git.commits('master', 15)
220
+ log.size
221
+
222
+ That command compares what is in your working directory with what is in your staging area. The result tells you the changes you’ve made that you haven’t yet staged.
223
+
224
+ If you want to see what you’ve staged that will go into your next commit, you can use `git diff --cached`. (In Git versions 1.6.1 and later, you can also use `git diff --staged`, which may be easier to remember.) This command compares your staged changes to your last commit:
225
+
226
+ $ git diff --cached
227
+ diff --git a/README b/README
228
+ new file mode 100644
229
+ index 0000000..03902a1
230
+ --- /dev/null
231
+ +++ b/README2
232
+ @@ -0,0 +1,5 @@
233
+ +grit
234
+ + by Tom Preston-Werner, Chris Wanstrath
235
+ + http://github.com/mojombo/grit
236
+ +
237
+ +Grit is a Ruby library for extracting information from a Git repository
238
+
239
+ It’s important to note that `git diff` by itself doesn’t show all changes made since your last commit — only changes that are still unstaged. This can be confusing, because if you’ve staged all of your changes, `git diff` will give you no output.
240
+
241
+ For another example, if you stage the `benchmarks.rb` file and then edit it, you can use `git diff` to see the changes in the file that are staged and the changes that are unstaged:
242
+
243
+ $ git add benchmarks.rb
244
+ $ echo '# test line' >> benchmarks.rb
245
+ $ git status
246
+ # On branch master
247
+ #
248
+ # Changes to be committed:
249
+ #
250
+ # modified: benchmarks.rb
251
+ #
252
+ # Changes not staged for commit:
253
+ #
254
+ # modified: benchmarks.rb
255
+ #
256
+
257
+ Now you can use `git diff` to see what is still unstaged
258
+
259
+ $ git diff
260
+ diff --git a/benchmarks.rb b/benchmarks.rb
261
+ index e445e28..86b2f7c 100644
262
+ --- a/benchmarks.rb
263
+ +++ b/benchmarks.rb
264
+ @@ -127,3 +127,4 @@ end
265
+ main()
266
+
267
+ ##pp Grit::GitRuby.cache_client.stats
268
+ +# test line
269
+
270
+ and `git diff --cached` to see what you’ve staged so far:
271
+
272
+ $ git diff --cached
273
+ diff --git a/benchmarks.rb b/benchmarks.rb
274
+ index 3cb747f..e445e28 100644
275
+ --- a/benchmarks.rb
276
+ +++ b/benchmarks.rb
277
+ @@ -36,6 +36,10 @@ def main
278
+ @commit.parents[0].parents[0].parents[0]
279
+ end
280
+
281
+ + run_code(x, 'commits 1') do
282
+ + git.commits.size
283
+ + end
284
+ +
285
+ run_code(x, 'commits 2') do
286
+ log = git.commits('master', 15)
287
+ log.size
288
+
289
+ ### Committing Your Changes ###
290
+
291
+ Now that your staging area is set up the way you want it, you can commit your changes. Remember that anything that is still unstaged — any files you have created or modified that you haven’t run `git add` on since you edited them — won’t go into this commit. They will stay as modified files on your disk.
292
+ In this case, the last time you ran `git status`, you saw that everything was staged, so you’re ready to commit your changes. The simplest way to commit is to type `git commit`:
293
+
294
+ $ git commit
295
+
296
+ Doing so launches your editor of choice. (This is set by your shell’s `$EDITOR` environment variable — usually vim or emacs, although you can configure it with whatever you want using the `git config --global core.editor` command as you saw in *Chapter 1*).
297
+
298
+ The editor displays the following text (this example is a Vim screen):
299
+
300
+ # Please enter the commit message for your changes. Lines starting
301
+ # with '#' will be ignored, and an empty message aborts the commit.
302
+ # On branch master
303
+ # Changes to be committed:
304
+ # (use "git reset HEAD <file>..." to unstage)
305
+ #
306
+ # new file: README
307
+ # modified: benchmarks.rb
308
+ ~
309
+ ~
310
+ ~
311
+ ".git/COMMIT_EDITMSG" 10L, 283C
312
+
313
+ You can see that the default commit message contains the latest output of the `git status` command commented out and one empty line on top. You can remove these comments and type your commit message, or you can leave them there to help you remember what you’re committing. (For an even more explicit reminder of what you’ve modified, you can pass the `-v` option to `git commit`. Doing so also puts the diff of your change in the editor so you can see exactly what you did.) When you exit the editor, Git creates your commit with that commit message (with the comments and diff stripped out).
314
+
315
+ Alternatively, you can type your commit message inline with the `commit` command by specifying it after a `-m` flag, like this:
316
+
317
+ $ git commit -m "Story 182: Fix benchmarks for speed"
318
+ [master]: created 463dc4f: "Fix benchmarks for speed"
319
+ 2 files changed, 3 insertions(+), 0 deletions(-)
320
+ create mode 100644 README
321
+
322
+ Now you’ve created your first commit! You can see that the commit has given you some output about itself: which branch you committed to (`master`), what SHA-1 checksum the commit has (`463dc4f`), how many files were changed, and statistics about lines added and removed in the commit.
323
+
324
+ Remember that the commit records the snapshot you set up in your staging area. Anything you didn’t stage is still sitting there modified; you can do another commit to add it to your history. Every time you perform a commit, you’re recording a snapshot of your project that you can revert to or compare to later.
325
+
326
+ ### Skipping the Staging Area ###
327
+
328
+ Although it can be amazingly useful for crafting commits exactly how you want them, the staging area is sometimes a bit more complex than you need in your workflow. If you want to skip the staging area, Git provides a simple shortcut. Providing the `-a` option to the `git commit` command makes Git automatically stage every file that is already tracked before doing the commit, letting you skip the `git add` part:
329
+
330
+ $ git status
331
+ # On branch master
332
+ #
333
+ # Changes not staged for commit:
334
+ #
335
+ # modified: benchmarks.rb
336
+ #
337
+ $ git commit -a -m 'added new benchmarks'
338
+ [master 83e38c7] added new benchmarks
339
+ 1 files changed, 5 insertions(+), 0 deletions(-)
340
+
341
+ Notice how you don’t have to run `git add` on the `benchmarks.rb` file in this case before you commit.
342
+
343
+ ### Removing Files ###
344
+
345
+ To remove a file from Git, you have to remove it from your tracked files (more accurately, remove it from your staging area) and then commit. The `git rm` command does that and also removes the file from your working directory so you don’t see it as an untracked file next time around.
346
+
347
+ If you simply remove the file from your working directory, it shows up under the “Changes not staged for commit” (that is, _unstaged_) area of your `git status` output:
348
+
349
+ $ rm grit.gemspec
350
+ $ git status
351
+ # On branch master
352
+ #
353
+ # Changes not staged for commit:
354
+ # (use "git add/rm <file>..." to update what will be committed)
355
+ #
356
+ # deleted: grit.gemspec
357
+ #
358
+
359
+ Then, if you run `git rm`, it stages the file’s removal:
360
+
361
+ $ git rm grit.gemspec
362
+ rm 'grit.gemspec'
363
+ $ git status
364
+ # On branch master
365
+ #
366
+ # Changes to be committed:
367
+ # (use "git reset HEAD <file>..." to unstage)
368
+ #
369
+ # deleted: grit.gemspec
370
+ #
371
+
372
+ The next time you commit, the file will be gone and no longer tracked. If you modified the file and added it to the index already, you must force the removal with the `-f` option. This is a safety feature to prevent accidental removal of data that hasn’t yet been recorded in a snapshot and that can’t be recovered from Git.
373
+
374
+ Another useful thing you may want to do is to keep the file in your working tree but remove it from your staging area. In other words, you may want to keep the file on your hard drive but not have Git track it anymore. This is particularly useful if you forgot to add something to your `.gitignore` file and accidentally added it, like a large log file or a bunch of `.a` compiled files. To do this, use the `--cached` option:
375
+
376
+ $ git rm --cached readme.txt
377
+
378
+ You can pass files, directories, and file-glob patterns to the `git rm` command. That means you can do things such as
379
+
380
+ $ git rm log/\*.log
381
+
382
+ Note the backslash (`\`) in front of the `*`. This is necessary because Git does its own filename expansion in addition to your shell’s filename expansion. This command removes all files that have the `.log` extension in the `log/` directory. Or, you can do something like this:
383
+
384
+ $ git rm \*~
385
+
386
+ This command removes all files that end with `~`.
387
+
388
+ ### Moving Files ###
389
+
390
+ Unlike many other VCS systems, Git doesn’t explicitly track file movement. If you rename a file in Git, no metadata is stored in Git that tells it you renamed the file. However, Git is pretty smart about figuring that out after the fact — we’ll deal with detecting file movement a bit later.
391
+
392
+ Thus it’s a bit confusing that Git has a `mv` command. If you want to rename a file in Git, you can run something like
393
+
394
+ $ git mv file_from file_to
395
+
396
+ and it works fine. In fact, if you run something like this and look at the status, you’ll see that Git considers it a renamed file:
397
+
398
+ $ git mv README.txt README
399
+ $ git status
400
+ # On branch master
401
+ # Your branch is ahead of 'origin/master' by 1 commit.
402
+ #
403
+ # Changes to be committed:
404
+ # (use "git reset HEAD <file>..." to unstage)
405
+ #
406
+ # renamed: README.txt -> README
407
+ #
408
+
409
+ However, this is equivalent to running something like this:
410
+
411
+ $ mv README.txt README
412
+ $ git rm README.txt
413
+ $ git add README
414
+
415
+ Git figures out that it’s a rename implicitly, so it doesn’t matter if you rename a file that way or with the `mv` command. The only real difference is that `mv` is one command instead of three — it’s a convenience function. More important, you can use any tool you like to rename a file, and address the add/rm later, before you commit.
416
+
417
+ ## Viewing the Commit History ##
418
+
419
+ After you have created several commits, or if you have cloned a repository with an existing commit history, you’ll probably want to look back to see what has happened. The most basic and powerful tool to do this is the `git log` command.
420
+
421
+ These examples use a very simple project called `simplegit` that I often use for demonstrations. To get the project, run
422
+
423
+ git clone git://github.com/schacon/simplegit-progit.git
424
+
425
+ When you run `git log` in this project, you should get output that looks something like this:
426
+
427
+ $ git log
428
+ commit ca82a6dff817ec66f44342007202690a93763949
429
+ Author: Scott Chacon <schacon@gee-mail.com>
430
+ Date: Mon Mar 17 21:52:11 2008 -0700
431
+
432
+ changed the version number
433
+
434
+ commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7
435
+ Author: Scott Chacon <schacon@gee-mail.com>
436
+ Date: Sat Mar 15 16:40:33 2008 -0700
437
+
438
+ removed unnecessary test code
439
+
440
+ commit a11bef06a3f659402fe7563abf99ad00de2209e6
441
+ Author: Scott Chacon <schacon@gee-mail.com>
442
+ Date: Sat Mar 15 10:31:28 2008 -0700
443
+
444
+ first commit
445
+
446
+ By default, with no arguments, `git log` lists the commits made in that repository in reverse chronological order. That is, the most recent commits show up first. As you can see, this command lists each commit with its SHA-1 checksum, the author’s name and e-mail, the date written, and the commit message.
447
+
448
+ A huge number and variety of options to the `git log` command are available to show you exactly what you’re looking for. Here, we’ll show you some of the most-used options.
449
+
450
+ One of the more helpful options is `-p`, which shows the diff introduced in each commit. You can also use `-2`, which limits the output to only the last two entries:
451
+
452
+ $ git log -p -2
453
+ commit ca82a6dff817ec66f44342007202690a93763949
454
+ Author: Scott Chacon <schacon@gee-mail.com>
455
+ Date: Mon Mar 17 21:52:11 2008 -0700
456
+
457
+ changed the version number
458
+
459
+ diff --git a/Rakefile b/Rakefile
460
+ index a874b73..8f94139 100644
461
+ --- a/Rakefile
462
+ +++ b/Rakefile
463
+ @@ -5,7 +5,7 @@ require 'rake/gempackagetask'
464
+ spec = Gem::Specification.new do |s|
465
+ - s.version = "0.1.0"
466
+ + s.version = "0.1.1"
467
+ s.author = "Scott Chacon"
468
+
469
+ commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7
470
+ Author: Scott Chacon <schacon@gee-mail.com>
471
+ Date: Sat Mar 15 16:40:33 2008 -0700
472
+
473
+ removed unnecessary test code
474
+
475
+ diff --git a/lib/simplegit.rb b/lib/simplegit.rb
476
+ index a0a60ae..47c6340 100644
477
+ --- a/lib/simplegit.rb
478
+ +++ b/lib/simplegit.rb
479
+ @@ -18,8 +18,3 @@ class SimpleGit
480
+ end
481
+
482
+ end
483
+ -
484
+ -if $0 == __FILE__
485
+ - git = SimpleGit.new
486
+ - puts git.show
487
+ -end
488
+
489
+
490
+ This option displays the same information but with a diff directly following each entry. This is very helpful for code review or to quickly browse what happened during a series of commits that a collaborator has added.
491
+ You can also use a series of summarizing options with `git log`. For example, if you want to see some abbreviated stats for each commit, you can use the `--stat` option:
492
+
493
+ $ git log --stat
494
+ commit ca82a6dff817ec66f44342007202690a93763949
495
+ Author: Scott Chacon <schacon@gee-mail.com>
496
+ Date: Mon Mar 17 21:52:11 2008 -0700
497
+
498
+ changed the version number
499
+
500
+ Rakefile | 2 +-
501
+ 1 files changed, 1 insertions(+), 1 deletions(-)
502
+
503
+ commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7
504
+ Author: Scott Chacon <schacon@gee-mail.com>
505
+ Date: Sat Mar 15 16:40:33 2008 -0700
506
+
507
+ removed unnecessary test code
508
+
509
+ lib/simplegit.rb | 5 -----
510
+ 1 files changed, 0 insertions(+), 5 deletions(-)
511
+
512
+ commit a11bef06a3f659402fe7563abf99ad00de2209e6
513
+ Author: Scott Chacon <schacon@gee-mail.com>
514
+ Date: Sat Mar 15 10:31:28 2008 -0700
515
+
516
+ first commit
517
+
518
+ README | 6 ++++++
519
+ Rakefile | 23 +++++++++++++++++++++++
520
+ lib/simplegit.rb | 25 +++++++++++++++++++++++++
521
+ 3 files changed, 54 insertions(+), 0 deletions(-)
522
+
523
+ As you can see, the `--stat` option prints below each commit entry a list of modified files, how many files were changed, and how many lines in those files were added and removed. It also puts a summary of the information at the end.
524
+ Another really useful option is `--pretty`. This option changes the log output to formats other than the default. A few prebuilt options are available for you to use. The `oneline` option prints each commit on a single line, which is useful if you’re looking at a lot of commits. In addition, the `short`, `full`, and `fuller` options show the output in roughly the same format but with less or more information, respectively:
525
+
526
+ $ git log --pretty=oneline
527
+ ca82a6dff817ec66f44342007202690a93763949 changed the version number
528
+ 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7 removed unnecessary test code
529
+ a11bef06a3f659402fe7563abf99ad00de2209e6 first commit
530
+
531
+ The most interesting option is `format`, which allows you to specify your own log output format. This is especially useful when you’re generating output for machine parsing — because you specify the format explicitly, you know it won’t change with updates to Git:
532
+
533
+ $ git log --pretty=format:"%h - %an, %ar : %s"
534
+ ca82a6d - Scott Chacon, 11 months ago : changed the version number
535
+ 085bb3b - Scott Chacon, 11 months ago : removed unnecessary test code
536
+ a11bef0 - Scott Chacon, 11 months ago : first commit
537
+
538
+ Table 2-1 lists some of the more useful options that format takes.
539
+
540
+ Option Description of Output
541
+ %H Commit hash
542
+ %h Abbreviated commit hash
543
+ %T Tree hash
544
+ %t Abbreviated tree hash
545
+ %P Parent hashes
546
+ %p Abbreviated parent hashes
547
+ %an Author name
548
+ %ae Author e-mail
549
+ %ad Author date (format respects the –date= option)
550
+ %ar Author date, relative
551
+ %cn Committer name
552
+ %ce Committer email
553
+ %cd Committer date
554
+ %cr Committer date, relative
555
+ %s Subject
556
+
557
+ You may be wondering what the difference is between _author_ and _committer_. The _author_ is the person who originally wrote the patch, whereas the _committer_ is the person who last applied the patch. So, if you send in a patch to a project and one of the core members applies the patch, both of you get credit — you as the author and the core member as the committer. We’ll cover this distinction a bit more in *Chapter 5*.
558
+
559
+ The `oneline` and `format` options are particularly useful with another `log` option called `--graph`. This option adds a nice little ASCII graph showing your branch and merge history, which we can see our copy of the Grit project repository:
560
+
561
+ $ git log --pretty=format:"%h %s" --graph
562
+ * 2d3acf9 ignore errors from SIGCHLD on trap
563
+ * 5e3ee11 Merge branch 'master' of git://github.com/dustin/grit
564
+ |\
565
+ | * 420eac9 Added a method for getting the current branch.
566
+ * | 30e367c timeout code and tests
567
+ * | 5a09431 add timeout protection to grit
568
+ * | e1193f8 support for heads with slashes in them
569
+ |/
570
+ * d6016bc require time for xmlschema
571
+ * 11d191e Merge branch 'defunkt' into local
572
+
573
+ Those are only some simple output-formatting options to `git log` — there are many more. Table 2-2 lists the options we’ve covered so far and some other common formatting options that may be useful, along with how they change the output of the log command.
574
+
575
+ Option Description
576
+ -p Show the patch introduced with each commit.
577
+ --stat Show statistics for files modified in each commit.
578
+ --shortstat Display only the changed/insertions/deletions line from the --stat command.
579
+ --name-only Show the list of files modified after the commit information.
580
+ --name-status Show the list of files affected with added/modified/deleted information as well.
581
+ --abbrev-commit Show only the first few characters of the SHA-1 checksum instead of all 40.
582
+ --relative-date Display the date in a relative format (for example, “2 weeks ago”) instead of using the full date format.
583
+ --graph Display an ASCII graph of the branch and merge history beside the log output.
584
+ --pretty Show commits in an alternate format. Options include oneline, short, full, fuller, and format (where you specify your own format).
585
+
586
+ ### Limiting Log Output ###
587
+
588
+ In addition to output-formatting options, `git log` takes a number of useful limiting options — that is, options that let you show only a subset of commits. You’ve seen one such option already — the `-2` option, which show only the last two commits. In fact, you can do `-<n>`, where `n` is any integer to show the last `n` commits. In reality, you’re unlikely to use that often, because Git by default pipes all output through a pager so you see only one page of log output at a time.
589
+
590
+ However, the time-limiting options such as `--since` and `--until` are very useful. For example, this command gets the list of commits made in the last two weeks:
591
+
592
+ $ git log --since=2.weeks
593
+
594
+ This command works with lots of formats — you can specify a specific date (“2008-01-15”) or a relative date such as “2 years 1 day 3 minutes ago”.
595
+
596
+ You can also filter the list to commits that match some search criteria. The `--author` option allows you to filter on a specific author, and the `--grep` option lets you search for keywords in the commit messages. (Note that if you want to specify both author and grep options, you have to add `--all-match` or the command will match commits with either.)
597
+
598
+ The last really useful option to pass to `git log` as a filter is a path. If you specify a directory or file name, you can limit the log output to commits that introduced a change to those files. This is always the last option and is generally preceded by double dashes (`--`) to separate the paths from the options.
599
+
600
+ In Table 2-3 we’ll list these and a few other common options for your reference.
601
+
602
+ Option Description
603
+ -(n) Show only the last n commits
604
+ --since, --after Limit the commits to those made after the specified date.
605
+ --until, --before Limit the commits to those made before the specified date.
606
+ --author Only show commits in which the author entry matches the specified string.
607
+ --committer Only show commits in which the committer entry matches the specified string.
608
+
609
+ For example, if you want to see which commits modifying test files in the Git source code history were committed by Junio Hamano and were not merges in the month of October 2008, you can run something like this:
610
+
611
+ $ git log --pretty="%h - %s" --author=gitster --since="2008-10-01" \
612
+ --before="2008-11-01" --no-merges -- t/
613
+ 5610e3b - Fix testcase failure when extended attribute
614
+ acd3b9e - Enhance hold_lock_file_for_{update,append}()
615
+ f563754 - demonstrate breakage of detached checkout wi
616
+ d1a43f2 - reset --hard/read-tree --reset -u: remove un
617
+ 51a94af - Fix "checkout --track -b newbranch" on detac
618
+ b0ad11e - pull: allow "git pull origin $something:$cur
619
+
620
+ Of the nearly 20,000 commits in the Git source code history, this command shows the 6 that match those criteria.
621
+
622
+ ### Using a GUI to Visualize History ###
623
+
624
+ If you like to use a more graphical tool to visualize your commit history, you may want to take a look at a Tcl/Tk program called `gitk` that is distributed with Git. Gitk is basically a visual `git log` tool, and it accepts nearly all the filtering options that `git log` does. If you type `gitk` on the command line in your project, you should see something like Figure 2-2.
625
+
626
+ Insert 18333fig0202.png
627
+ Figure 2-2. The gitk history visualizer.
628
+
629
+ You can see the commit history in the top half of the window along with a nice ancestry graph. The diff viewer in the bottom half of the window shows you the changes introduced at any commit you click.
630
+
631
+ ## Undoing Things ##
632
+
633
+ At any stage, you may want to undo something. Here, we’ll review a few basic tools for undoing changes that you’ve made. Be careful, because you can’t always revert some of these undos. This is one of the few areas in Git where you may lose some work if you do it wrong.
634
+
635
+ ### Changing Your Last Commit ###
636
+
637
+ One of the common undos takes place when you commit too early and possibly forget to add some files, or you mess up your commit message. If you want to try that commit again, you can run commit with the `--amend` option:
638
+
639
+ $ git commit --amend
640
+
641
+ This command takes your staging area and uses it for the commit. If you’ve made no changes since your last commit (for instance, you run this command immediately after your previous commit), then your snapshot will look exactly the same and all you’ll change is your commit message.
642
+
643
+ The same commit-message editor fires up, but it already contains the message of your previous commit. You can edit the message the same as always, but it overwrites your previous commit.
644
+
645
+ As an example, if you commit and then realize you forgot to stage the changes in a file you wanted to add to this commit, you can do something like this:
646
+
647
+ $ git commit -m 'initial commit'
648
+ $ git add forgotten_file
649
+ $ git commit --amend
650
+
651
+ After these three commands, you end up with a single commit — the second commit replaces the results of the first.
652
+
653
+ ### Unstaging a Staged File ###
654
+
655
+ The next two sections demonstrate how to wrangle your staging area and working directory changes. The nice part is that the command you use to determine the state of those two areas also reminds you how to undo changes to them. For example, let’s say you’ve changed two files and want to commit them as two separate changes, but you accidentally type `git add *` and stage them both. How can you unstage one of the two? The `git status` command reminds you:
656
+
657
+ $ git add .
658
+ $ git status
659
+ # On branch master
660
+ # Changes to be committed:
661
+ # (use "git reset HEAD <file>..." to unstage)
662
+ #
663
+ # modified: README.txt
664
+ # modified: benchmarks.rb
665
+ #
666
+
667
+ Right below the “Changes to be committed” text, it says "use `git reset HEAD <file>...` to unstage". So, let’s use that advice to unstage the `benchmarks.rb` file:
668
+
669
+ $ git reset HEAD benchmarks.rb
670
+ benchmarks.rb: locally modified
671
+ $ git status
672
+ # On branch master
673
+ # Changes to be committed:
674
+ # (use "git reset HEAD <file>..." to unstage)
675
+ #
676
+ # modified: README.txt
677
+ #
678
+ # Changes not staged for commit:
679
+ # (use "git add <file>..." to update what will be committed)
680
+ # (use "git checkout -- <file>..." to discard changes in working directory)
681
+ #
682
+ # modified: benchmarks.rb
683
+ #
684
+
685
+ The command is a bit strange, but it works. The `benchmarks.rb` file is modified but once again unstaged.
686
+
687
+ ### Unmodifying a Modified File ###
688
+
689
+ What if you realize that you don’t want to keep your changes to the `benchmarks.rb` file? How can you easily unmodify it — revert it back to what it looked like when you last committed (or initially cloned, or however you got it into your working directory)? Luckily, `git status` tells you how to do that, too. In the last example output, the unstaged area looks like this:
690
+
691
+ # Changes not staged for commit:
692
+ # (use "git add <file>..." to update what will be committed)
693
+ # (use "git checkout -- <file>..." to discard changes in working directory)
694
+ #
695
+ # modified: benchmarks.rb
696
+ #
697
+
698
+ It tells you pretty explicitly how to discard the changes you’ve made (at least, the newer versions of Git, 1.6.1 and later, do this — if you have an older version, we highly recommend upgrading it to get some of these nicer usability features). Let’s do what it says:
699
+
700
+ $ git checkout -- benchmarks.rb
701
+ $ git status
702
+ # On branch master
703
+ # Changes to be committed:
704
+ # (use "git reset HEAD <file>..." to unstage)
705
+ #
706
+ # modified: README.txt
707
+ #
708
+
709
+ You can see that the changes have been reverted. You should also realize that this is a dangerous command: any changes you made to that file are gone — you just copied another file over it. Don’t ever use this command unless you absolutely know that you don’t want the file. If you just need to get it out of the way, we’ll go over stashing and branching in the next chapter; these are generally better ways to go.
710
+
711
+ Remember, anything that is committed in Git can almost always be recovered. Even commits that were on branches that were deleted or commits that were overwritten with an `--amend` commit can be recovered (see *Chapter 9* for data recovery). However, anything you lose that was never committed is likely never to be seen again.
712
+
713
+ ## Working with Remotes ##
714
+
715
+ To be able to collaborate on any Git project, you need to know how to manage your remote repositories. Remote repositories are versions of your project that are hosted on the Internet or network somewhere. You can have several of them, each of which generally is either read-only or read/write for you. Collaborating with others involves managing these remote repositories and pushing and pulling data to and from them when you need to share work.
716
+ Managing remote repositories includes knowing how to add remote repositories, remove remotes that are no longer valid, manage various remote branches and define them as being tracked or not, and more. In this section, we’ll cover these remote-management skills.
717
+
718
+ ### Showing Your Remotes ###
719
+
720
+ To see which remote servers you have configured, you can run the `git remote` command. It lists the shortnames of each remote handle you’ve specified. If you’ve cloned your repository, you should at least see *origin* — that is the default name Git gives to the server you cloned from:
721
+
722
+ $ git clone git://github.com/schacon/ticgit.git
723
+ Initialized empty Git repository in /private/tmp/ticgit/.git/
724
+ remote: Counting objects: 595, done.
725
+ remote: Compressing objects: 100% (269/269), done.
726
+ remote: Total 595 (delta 255), reused 589 (delta 253)
727
+ Receiving objects: 100% (595/595), 73.31 KiB | 1 KiB/s, done.
728
+ Resolving deltas: 100% (255/255), done.
729
+ $ cd ticgit
730
+ $ git remote
731
+ origin
732
+
733
+ You can also specify `-v`, which shows you the URL that Git has stored for the shortname to be expanded to:
734
+
735
+ $ git remote -v
736
+ origin git://github.com/schacon/ticgit.git
737
+
738
+ If you have more than one remote, the command lists them all. For example, my Grit repository looks something like this.
739
+
740
+ $ cd grit
741
+ $ git remote -v
742
+ bakkdoor git://github.com/bakkdoor/grit.git
743
+ cho45 git://github.com/cho45/grit.git
744
+ defunkt git://github.com/defunkt/grit.git
745
+ koke git://github.com/koke/grit.git
746
+ origin git@github.com:mojombo/grit.git
747
+
748
+ This means we can pull contributions from any of these users pretty easily. But notice that only the origin remote is an SSH URL, so it’s the only one I can push to (we’ll cover why this is in *Chapter 4*).
749
+
750
+ ### Adding Remote Repositories ###
751
+
752
+ I’ve mentioned and given some demonstrations of adding remote repositories in previous sections, but here is how to do it explicitly. To add a new remote Git repository as a shortname you can reference easily, run `git remote add [shortname] [url]`:
753
+
754
+ $ git remote
755
+ origin
756
+ $ git remote add pb git://github.com/paulboone/ticgit.git
757
+ $ git remote -v
758
+ origin git://github.com/schacon/ticgit.git
759
+ pb git://github.com/paulboone/ticgit.git
760
+
761
+ Now you can use the string `pb` on the command line in lieu of the whole URL. For example, if you want to fetch all the information that Paul has but that you don’t yet have in your repository, you can run git fetch pb:
762
+
763
+ $ git fetch pb
764
+ remote: Counting objects: 58, done.
765
+ remote: Compressing objects: 100% (41/41), done.
766
+ remote: Total 44 (delta 24), reused 1 (delta 0)
767
+ Unpacking objects: 100% (44/44), done.
768
+ From git://github.com/paulboone/ticgit
769
+ * [new branch] master -> pb/master
770
+ * [new branch] ticgit -> pb/ticgit
771
+
772
+ Paul’s master branch is accessible locally as `pb/master` — you can merge it into one of your branches, or you can check out a local branch at that point if you want to inspect it.
773
+
774
+ ### Fetching and Pulling from Your Remotes ###
775
+
776
+ As you just saw, to get data from your remote projects, you can run:
777
+
778
+ $ git fetch [remote-name]
779
+
780
+ The command goes out to that remote project and pulls down all the data from that remote project that you don’t have yet. After you do this, you should have references to all the branches from that remote, which you can merge in or inspect at any time. (We’ll go over what branches are and how to use them in much more detail in *Chapter 3*.)
781
+
782
+ If you clone a repository, the command automatically adds that remote repository under the name *origin*. So, `git fetch origin` fetches any new work that has been pushed to that server since you cloned (or last fetched from) it. It’s important to note that the `fetch` command pulls the data to your local repository — it doesn’t automatically merge it with any of your work or modify what you’re currently working on. You have to merge it manually into your work when you’re ready.
783
+
784
+ If you have a branch set up to track a remote branch (see the next section and *Chapter 3* for more information), you can use the `git pull` command to automatically fetch and then merge a remote branch into your current branch. This may be an easier or more comfortable workflow for you; and by default, the `git clone` command automatically sets up your local master branch to track the remote master branch on the server you cloned from (assuming the remote has a master branch). Running `git pull` generally fetches data from the server you originally cloned from and automatically tries to merge it into the code you’re currently working on.
785
+
786
+ ### Pushing to Your Remotes ###
787
+
788
+ When you have your project at a point that you want to share, you have to push it upstream. The command for this is simple: `git push [remote-name] [branch-name]`. If you want to push your master branch to your `origin` server (again, cloning generally sets up both of those names for you automatically), then you can run this to push your work back up to the server:
789
+
790
+ $ git push origin master
791
+
792
+ This command works only if you cloned from a server to which you have write access and if nobody has pushed in the meantime. If you and someone else clone at the same time and they push upstream and then you push upstream, your push will rightly be rejected. You’ll have to pull down their work first and incorporate it into yours before you’ll be allowed to push. See *Chapter 3* for more detailed information on how to push to remote servers.
793
+
794
+ ### Inspecting a Remote ###
795
+
796
+ If you want to see more information about a particular remote, you can use the `git remote show [remote-name]` command. If you run this command with a particular shortname, such as `origin`, you get something like this:
797
+
798
+ $ git remote show origin
799
+ * remote origin
800
+ URL: git://github.com/schacon/ticgit.git
801
+ Remote branch merged with 'git pull' while on branch master
802
+ master
803
+ Tracked remote branches
804
+ master
805
+ ticgit
806
+
807
+ It lists the URL for the remote repository as well as the tracking branch information. The command helpfully tells you that if you’re on the master branch and you run `git pull`, it will automatically merge in the master branch on the remote after it fetches all the remote references. It also lists all the remote references it has pulled down.
808
+
809
+ That is a simple example you’re likely to encounter. When you’re using Git more heavily, however, you may see much more information from `git remote show`:
810
+
811
+ $ git remote show origin
812
+ * remote origin
813
+ URL: git@github.com:defunkt/github.git
814
+ Remote branch merged with 'git pull' while on branch issues
815
+ issues
816
+ Remote branch merged with 'git pull' while on branch master
817
+ master
818
+ New remote branches (next fetch will store in remotes/origin)
819
+ caching
820
+ Stale tracking branches (use 'git remote prune')
821
+ libwalker
822
+ walker2
823
+ Tracked remote branches
824
+ acl
825
+ apiv2
826
+ dashboard2
827
+ issues
828
+ master
829
+ postgres
830
+ Local branch pushed with 'git push'
831
+ master:master
832
+
833
+ This command shows which branch is automatically pushed when you run `git push` on certain branches. It also shows you which remote branches on the server you don’t yet have, which remote branches you have that have been removed from the server, and multiple branches that are automatically merged when you run `git pull`.
834
+
835
+ ### Removing and Renaming Remotes ###
836
+
837
+ If you want to rename a reference, in newer versions of Git you can run `git remote rename` to change a remote’s shortname. For instance, if you want to rename `pb` to `paul`, you can do so with `git remote rename`:
838
+
839
+ $ git remote rename pb paul
840
+ $ git remote
841
+ origin
842
+ paul
843
+
844
+ It’s worth mentioning that this changes your remote branch names, too. What used to be referenced at `pb/master` is now at `paul/master`.
845
+
846
+ If you want to remove a reference for some reason — you’ve moved the server or are no longer using a particular mirror, or perhaps a contributor isn’t contributing anymore — you can use `git remote rm`:
847
+
848
+ $ git remote rm paul
849
+ $ git remote
850
+ origin
851
+
852
+ ## Tagging ##
853
+
854
+ Like most VCSs, Git has the ability to tag specific points in history as being important. Generally, people use this functionality to mark release points (`v1.0`, and so on). In this section, you’ll learn how to list the available tags, how to create new tags, and what the different types of tags are.
855
+
856
+ ### Listing Your Tags ###
857
+
858
+ Listing the available tags in Git is straightforward. Just type `git tag`:
859
+
860
+ $ git tag
861
+ v0.1
862
+ v1.3
863
+
864
+ This command lists the tags in alphabetical order; the order in which they appear has no real importance.
865
+
866
+ You can also search for tags with a particular pattern. The Git source repo, for instance, contains more than 240 tags. If you’re only interested in looking at the 1.4.2 series, you can run this:
867
+
868
+ $ git tag -l 'v1.4.2.*'
869
+ v1.4.2.1
870
+ v1.4.2.2
871
+ v1.4.2.3
872
+ v1.4.2.4
873
+
874
+ ### Creating Tags ###
875
+
876
+ Git uses two main types of tags: lightweight and annotated. A lightweight tag is very much like a branch that doesn’t change — it’s just a pointer to a specific commit. Annotated tags, however, are stored as full objects in the Git database. They’re checksummed; contain the tagger name, e-mail, and date; have a tagging message; and can be signed and verified with GNU Privacy Guard (GPG). It’s generally recommended that you create annotated tags so you can have all this information; but if you want a temporary tag or for some reason don’t want to keep the other information, lightweight tags are available too.
877
+
878
+ ### Annotated Tags ###
879
+
880
+ Creating an annotated tag in Git is simple. The easiest way is to specify `-a` when you run the `tag` command:
881
+
882
+ $ git tag -a v1.4 -m 'my version 1.4'
883
+ $ git tag
884
+ v0.1
885
+ v1.3
886
+ v1.4
887
+
888
+ The `-m` specifies a tagging message, which is stored with the tag. If you don’t specify a message for an annotated tag, Git launches your editor so you can type it in.
889
+
890
+ You can see the tag data along with the commit that was tagged by using the `git show` command:
891
+
892
+ $ git show v1.4
893
+ tag v1.4
894
+ Tagger: Scott Chacon <schacon@gee-mail.com>
895
+ Date: Mon Feb 9 14:45:11 2009 -0800
896
+
897
+ my version 1.4
898
+ commit 15027957951b64cf874c3557a0f3547bd83b3ff6
899
+ Merge: 4a447f7... a6b4c97...
900
+ Author: Scott Chacon <schacon@gee-mail.com>
901
+ Date: Sun Feb 8 19:02:46 2009 -0800
902
+
903
+ Merge branch 'experiment'
904
+
905
+ That shows the tagger information, the date the commit was tagged, and the annotation message before showing the commit information.
906
+
907
+ ### Signed Tags ###
908
+
909
+ You can also sign your tags with GPG, assuming you have a private key. All you have to do is use `-s` instead of `-a`:
910
+
911
+ $ git tag -s v1.5 -m 'my signed 1.5 tag'
912
+ You need a passphrase to unlock the secret key for
913
+ user: "Scott Chacon <schacon@gee-mail.com>"
914
+ 1024-bit DSA key, ID F721C45A, created 2009-02-09
915
+
916
+ If you run `git show` on that tag, you can see your GPG signature attached to it:
917
+
918
+ $ git show v1.5
919
+ tag v1.5
920
+ Tagger: Scott Chacon <schacon@gee-mail.com>
921
+ Date: Mon Feb 9 15:22:20 2009 -0800
922
+
923
+ my signed 1.5 tag
924
+ -----BEGIN PGP SIGNATURE-----
925
+ Version: GnuPG v1.4.8 (Darwin)
926
+
927
+ iEYEABECAAYFAkmQurIACgkQON3DxfchxFr5cACeIMN+ZxLKggJQf0QYiQBwgySN
928
+ Ki0An2JeAVUCAiJ7Ox6ZEtK+NvZAj82/
929
+ =WryJ
930
+ -----END PGP SIGNATURE-----
931
+ commit 15027957951b64cf874c3557a0f3547bd83b3ff6
932
+ Merge: 4a447f7... a6b4c97...
933
+ Author: Scott Chacon <schacon@gee-mail.com>
934
+ Date: Sun Feb 8 19:02:46 2009 -0800
935
+
936
+ Merge branch 'experiment'
937
+
938
+ A bit later, you’ll learn how to verify signed tags.
939
+
940
+ ### Lightweight Tags ###
941
+
942
+ Another way to tag commits is with a lightweight tag. This is basically the commit checksum stored in a file — no other information is kept. To create a lightweight tag, don’t supply the `-a`, `-s`, or `-m` option:
943
+
944
+ $ git tag v1.4-lw
945
+ $ git tag
946
+ v0.1
947
+ v1.3
948
+ v1.4
949
+ v1.4-lw
950
+ v1.5
951
+
952
+ This time, if you run `git show` on the tag, you don’t see the extra tag information. The command just shows the commit:
953
+
954
+ $ git show v1.4-lw
955
+ commit 15027957951b64cf874c3557a0f3547bd83b3ff6
956
+ Merge: 4a447f7... a6b4c97...
957
+ Author: Scott Chacon <schacon@gee-mail.com>
958
+ Date: Sun Feb 8 19:02:46 2009 -0800
959
+
960
+ Merge branch 'experiment'
961
+
962
+ ### Verifying Tags ###
963
+
964
+ To verify a signed tag, you use `git tag -v [tag-name]`. This command uses GPG to verify the signature. You need the signer’s public key in your keyring for this to work properly:
965
+
966
+ $ git tag -v v1.4.2.1
967
+ object 883653babd8ee7ea23e6a5c392bb739348b1eb61
968
+ type commit
969
+ tag v1.4.2.1
970
+ tagger Junio C Hamano <junkio@cox.net> 1158138501 -0700
971
+
972
+ GIT 1.4.2.1
973
+
974
+ Minor fixes since 1.4.2, including git-mv and git-http with alternates.
975
+ gpg: Signature made Wed Sep 13 02:08:25 2006 PDT using DSA key ID F3119B9A
976
+ gpg: Good signature from "Junio C Hamano <junkio@cox.net>"
977
+ gpg: aka "[jpeg image of size 1513]"
978
+ Primary key fingerprint: 3565 2A26 2040 E066 C9A7 4A7D C0C6 D9A4 F311 9B9A
979
+
980
+ If you don’t have the signer’s public key, you get something like this instead:
981
+
982
+ gpg: Signature made Wed Sep 13 02:08:25 2006 PDT using DSA key ID F3119B9A
983
+ gpg: Can't check signature: public key not found
984
+ error: could not verify the tag 'v1.4.2.1'
985
+
986
+ ### Tagging Later ###
987
+
988
+ You can also tag commits after you’ve moved past them. Suppose your commit history looks like this:
989
+
990
+ $ git log --pretty=oneline
991
+ 15027957951b64cf874c3557a0f3547bd83b3ff6 Merge branch 'experiment'
992
+ a6b4c97498bd301d84096da251c98a07c7723e65 beginning write support
993
+ 0d52aaab4479697da7686c15f77a3d64d9165190 one more thing
994
+ 6d52a271eda8725415634dd79daabbc4d9b6008e Merge branch 'experiment'
995
+ 0b7434d86859cc7b8c3d5e1dddfed66ff742fcbc added a commit function
996
+ 4682c3261057305bdd616e23b64b0857d832627b added a todo file
997
+ 166ae0c4d3f420721acbb115cc33848dfcc2121a started write support
998
+ 9fceb02d0ae598e95dc970b74767f19372d61af8 updated rakefile
999
+ 964f16d36dfccde844893cac5b347e7b3d44abbc commit the todo
1000
+ 8a5cbc430f1a9c3d00faaeffd07798508422908a updated readme
1001
+
1002
+ Now, suppose you forgot to tag the project at `v1.2`, which was at the "updated rakefile" commit. You can add it after the fact. To tag that commit, you specify the commit checksum (or part of it) at the end of the command:
1003
+
1004
+ $ git tag -a v1.2 9fceb02
1005
+
1006
+ You can see that you’ve tagged the commit:
1007
+
1008
+ $ git tag
1009
+ v0.1
1010
+ v1.2
1011
+ v1.3
1012
+ v1.4
1013
+ v1.4-lw
1014
+ v1.5
1015
+
1016
+ $ git show v1.2
1017
+ tag v1.2
1018
+ Tagger: Scott Chacon <schacon@gee-mail.com>
1019
+ Date: Mon Feb 9 15:32:16 2009 -0800
1020
+
1021
+ version 1.2
1022
+ commit 9fceb02d0ae598e95dc970b74767f19372d61af8
1023
+ Author: Magnus Chacon <mchacon@gee-mail.com>
1024
+ Date: Sun Apr 27 20:43:35 2008 -0700
1025
+
1026
+ updated rakefile
1027
+ ...
1028
+
1029
+ ### Sharing Tags ###
1030
+
1031
+ By default, the `git push` command doesn’t transfer tags to remote servers. You will have to explicitly push tags to a shared server after you have created them. This process is just like sharing remote branches — you can run `git push origin [tagname]`.
1032
+
1033
+ $ git push origin v1.5
1034
+ Counting objects: 50, done.
1035
+ Compressing objects: 100% (38/38), done.
1036
+ Writing objects: 100% (44/44), 4.56 KiB, done.
1037
+ Total 44 (delta 18), reused 8 (delta 1)
1038
+ To git@github.com:schacon/simplegit.git
1039
+ * [new tag] v1.5 -> v1.5
1040
+
1041
+ If you have a lot of tags that you want to push up at once, you can also use the `--tags` option to the `git push` command. This will transfer all of your tags to the remote server that are not already there.
1042
+
1043
+ $ git push origin --tags
1044
+ Counting objects: 50, done.
1045
+ Compressing objects: 100% (38/38), done.
1046
+ Writing objects: 100% (44/44), 4.56 KiB, done.
1047
+ Total 44 (delta 18), reused 8 (delta 1)
1048
+ To git@github.com:schacon/simplegit.git
1049
+ * [new tag] v0.1 -> v0.1
1050
+ * [new tag] v1.2 -> v1.2
1051
+ * [new tag] v1.4 -> v1.4
1052
+ * [new tag] v1.4-lw -> v1.4-lw
1053
+ * [new tag] v1.5 -> v1.5
1054
+
1055
+ Now, when someone else clones or pulls from your repository, they will get all your tags as well.
1056
+
1057
+ ## Tips and Tricks ##
1058
+
1059
+ Before we finish this chapter on basic Git, a few little tips and tricks may make your Git experience a bit simpler, easier, or more familiar. Many people use Git without using any of these tips, and we won’t refer to them or assume you’ve used them later in the book; but you should probably know how to do them.
1060
+
1061
+ ### Auto-Completion ###
1062
+
1063
+ If you use the Bash shell, Git comes with a nice auto-completion script you can enable. Download the Git source code, and look in the `contrib/completion` directory; there should be a file called `git-completion.bash`. Copy this file to your home directory, and add this to your `.bashrc` file:
1064
+
1065
+ source ~/.git-completion.bash
1066
+
1067
+ If you want to set up Git to automatically have Bash shell completion for all users, copy this script to the `/opt/local/etc/bash_completion.d` directory on Mac systems or to the `/etc/bash_completion.d/` directory on Linux systems. This is a directory of scripts that Bash will automatically load to provide shell completions.
1068
+
1069
+ If you’re using Windows with Git Bash, which is the default when installing Git on Windows with msysGit, auto-completion should be preconfigured.
1070
+
1071
+ Press the Tab key when you’re writing a Git command, and it should return a set of suggestions for you to pick from:
1072
+
1073
+ $ git co<tab><tab>
1074
+ commit config
1075
+
1076
+ In this case, typing `git co` and then pressing the Tab key twice suggests commit and config. Adding `m<tab>` completes `git commit` automatically.
1077
+
1078
+ This also works with options, which is probably more useful. For instance, if you’re running a `git log` command and can’t remember one of the options, you can start typing it and press Tab to see what matches:
1079
+
1080
+ $ git log --s<tab>
1081
+ --shortstat --since= --src-prefix= --stat --summary
1082
+
1083
+ That’s a pretty nice trick and may save you some time and documentation reading.
1084
+
1085
+ ### Git Aliases ###
1086
+
1087
+ Git doesn’t infer your command if you type it in partially. If you don’t want to type the entire text of each of the Git commands, you can easily set up an alias for each command using `git config`. Here are a couple of examples you may want to set up:
1088
+
1089
+ $ git config --global alias.co checkout
1090
+ $ git config --global alias.br branch
1091
+ $ git config --global alias.ci commit
1092
+ $ git config --global alias.st status
1093
+
1094
+ This means that, for example, instead of typing `git commit`, you just need to type `git ci`. As you go on using Git, you’ll probably use other commands frequently as well; in this case, don’t hesitate to create new aliases.
1095
+
1096
+ This technique can also be very useful in creating commands that you think should exist. For example, to correct the usability problem you encountered with unstaging a file, you can add your own unstage alias to Git:
1097
+
1098
+ $ git config --global alias.unstage 'reset HEAD --'
1099
+
1100
+ This makes the following two commands equivalent:
1101
+
1102
+ $ git unstage fileA
1103
+ $ git reset HEAD fileA
1104
+
1105
+ This seems a bit clearer. It’s also common to add a `last` command, like this:
1106
+
1107
+ $ git config --global alias.last 'log -1 HEAD'
1108
+
1109
+ This way, you can see the last commit easily:
1110
+
1111
+ $ git last
1112
+ commit 66938dae3329c7aebe598c2246a8e6af90d04646
1113
+ Author: Josh Goebel <dreamer3@example.com>
1114
+ Date: Tue Aug 26 19:48:51 2008 +0800
1115
+
1116
+ test for current head
1117
+
1118
+ Signed-off-by: Scott Chacon <schacon@example.com>
1119
+
1120
+ As you can tell, Git simply replaces the new command with whatever you alias it to. However, maybe you want to run an external command, rather than a Git subcommand. In that case, you start the command with a `!` character. This is useful if you write your own tools that work with a Git repository. We can demonstrate by aliasing `git visual` to run `gitk`:
1121
+
1122
+ $ git config --global alias.visual '!gitk'
1123
+
1124
+ ## Summary ##
1125
+
1126
+ At this point, you can do all the basic local Git operations — creating or cloning a repository, making changes, staging and committing those changes, and viewing the history of all the changes the repository has been through. Next, we’ll cover Git’s killer feature: its branching model.