jekyll-git 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/gem-push.yml +45 -0
  3. data/.gitignore +22 -0
  4. data/.travis.yml +5 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +84 -0
  8. data/Rakefile +8 -0
  9. data/jekyll-git_metadata.gemspec +29 -0
  10. data/lib/jekyll/git_metadata/generator.rb +151 -0
  11. data/lib/jekyll/git_metadata/version.rb +5 -0
  12. data/lib/jekyll/git_metadata.rb +8 -0
  13. data/lib/jekyll-git_metadata.rb +1 -0
  14. data/test/helper.rb +32 -0
  15. data/test/test_git_metadata.rb +227 -0
  16. data/test/test_repo/.gitignore +1 -0
  17. data/test/test_repo/_config.yml +17 -0
  18. data/test/test_repo/_gizmos/yoyo.md +9 -0
  19. data/test/test_repo/_includes/footer.html +61 -0
  20. data/test/test_repo/_includes/head.html +12 -0
  21. data/test/test_repo/_includes/header.html +28 -0
  22. data/test/test_repo/_layouts/default.html +19 -0
  23. data/test/test_repo/_layouts/page.html +14 -0
  24. data/test/test_repo/_layouts/post.html +15 -0
  25. data/test/test_repo/_posts/2014-07-14-welcome-to-jekyll.markdown +30 -0
  26. data/test/test_repo/about.md +11 -0
  27. data/test/test_repo/css/main.css +410 -0
  28. data/test/test_repo/dot_git/COMMIT_EDITMSG +1 -0
  29. data/test/test_repo/dot_git/HEAD +1 -0
  30. data/test/test_repo/dot_git/MERGE_RR +0 -0
  31. data/test/test_repo/dot_git/ORIG_HEAD +1 -0
  32. data/test/test_repo/dot_git/config +7 -0
  33. data/test/test_repo/dot_git/description +1 -0
  34. data/test/test_repo/dot_git/hooks/applypatch-msg.sample +15 -0
  35. data/test/test_repo/dot_git/hooks/commit-msg.sample +24 -0
  36. data/test/test_repo/dot_git/hooks/post-update.sample +8 -0
  37. data/test/test_repo/dot_git/hooks/pre-applypatch.sample +14 -0
  38. data/test/test_repo/dot_git/hooks/pre-commit.sample +49 -0
  39. data/test/test_repo/dot_git/hooks/pre-push.sample +54 -0
  40. data/test/test_repo/dot_git/hooks/pre-rebase.sample +169 -0
  41. data/test/test_repo/dot_git/hooks/prepare-commit-msg.sample +36 -0
  42. data/test/test_repo/dot_git/hooks/update.sample +128 -0
  43. data/test/test_repo/dot_git/index +0 -0
  44. data/test/test_repo/dot_git/info/exclude +6 -0
  45. data/test/test_repo/dot_git/logs/HEAD +9 -0
  46. data/test/test_repo/dot_git/logs/refs/heads/master +8 -0
  47. data/test/test_repo/dot_git/objects/00/26c4c5df4d5148a07b9fbd790620f4e11d0802 +0 -0
  48. data/test/test_repo/dot_git/objects/0a/842bc255214909543fb198145783107e735907 +0 -0
  49. data/test/test_repo/dot_git/objects/0b/6d4b0cffe0117537f4ac31c918588c394778ef +0 -0
  50. data/test/test_repo/dot_git/objects/0e/a9d20342677512902dde3175a73e1dd1059e67 +0 -0
  51. data/test/test_repo/dot_git/objects/13/30fa92b3c8d94ee3ebb645b04154e735c04cf1 +0 -0
  52. data/test/test_repo/dot_git/objects/1a/24ab60234bd846f0f1532f914d66ea986fadbb +0 -0
  53. data/test/test_repo/dot_git/objects/25/d62f6feeb7190483f81564f4a76c1ec33d5118 +0 -0
  54. data/test/test_repo/dot_git/objects/32/3a65e20f0feb846438bbda1a0396ea2db7616e +0 -0
  55. data/test/test_repo/dot_git/objects/32/fff15665e830f9bdd82ea46a906bd3cf1122b0 +1 -0
  56. data/test/test_repo/dot_git/objects/3d/32f2f8ec3470e6a88ad1f9096e539cec42a47a +0 -0
  57. data/test/test_repo/dot_git/objects/3e/d64bb62b98b0827096cda5da5a728ec1bf5e3e +1 -0
  58. data/test/test_repo/dot_git/objects/48/d97759a460f607e077eea99a2df7b3cd5a2601 +0 -0
  59. data/test/test_repo/dot_git/objects/4c/2dd956115a971f5376a998bc4b243022c8881e +0 -0
  60. data/test/test_repo/dot_git/objects/4d/1b13c2e1ef1c1a944aae52994682da833a5bef +1 -0
  61. data/test/test_repo/dot_git/objects/4d/7f8a4c1a1bac8d553ba169e18882a7f51235bd +0 -0
  62. data/test/test_repo/dot_git/objects/59/821b143fbc62850d08e3f70c70d02af08df684 +0 -0
  63. data/test/test_repo/dot_git/objects/59/bc060e8c1fbe31c985e00c6cc2fef3b46c0c62 +0 -0
  64. data/test/test_repo/dot_git/objects/60/9711c27d50b5ab6ecc7d8fd485082481f9fc4a +0 -0
  65. data/test/test_repo/dot_git/objects/62/61f5911f204a827c313081c33e2522f0dd457c +0 -0
  66. data/test/test_repo/dot_git/objects/70/343eb1287191b30371400048167253a883d6ca +0 -0
  67. data/test/test_repo/dot_git/objects/78/845656f899d0bfd86d2806b85b0c54adddd3c8 +0 -0
  68. data/test/test_repo/dot_git/objects/7f/9eb0e6044998d71653c06fdc6e359dfbfc4211 +0 -0
  69. data/test/test_repo/dot_git/objects/83/65a44c640d5c7cafc8788607a274dfd91b89bb +3 -0
  70. data/test/test_repo/dot_git/objects/83/8ad7a02ebe551a90bea885c94191667f29009c +1 -0
  71. data/test/test_repo/dot_git/objects/83/8daa5e0163161d6e47bd1b0d783ca7307066c6 +0 -0
  72. data/test/test_repo/dot_git/objects/88/090a3ea8ce80e49ea42d249836aaa25f257454 +0 -0
  73. data/test/test_repo/dot_git/objects/8d/1f788990d1f80ebcbe7b78c3e5c393b7a41943 +0 -0
  74. data/test/test_repo/dot_git/objects/99/117f666995e8836652d9590daa2fdcb4de8b2a +0 -0
  75. data/test/test_repo/dot_git/objects/9e/00340e45d33e52bb16100f1b613a36f82f9c57 +0 -0
  76. data/test/test_repo/dot_git/objects/a9/f5097c614e0d4be7f900c04d782d3b1d675ee2 +0 -0
  77. data/test/test_repo/dot_git/objects/ae/45638b71046b28d46a764d8a2f7780fec58c01 +1 -0
  78. data/test/test_repo/dot_git/objects/af/415865cd1f1c0a5963a5d45b1335856e23dae8 +0 -0
  79. data/test/test_repo/dot_git/objects/b8/ffd38affdd1cc22ee4cb830cbe5c398b4e3df1 +2 -0
  80. data/test/test_repo/dot_git/objects/ba/a938862bbe45533863069649b40fdebf59e81c +0 -0
  81. data/test/test_repo/dot_git/objects/c0/8f9add7a1d48045bec46451dfdbb5b5ebf8dc0 +0 -0
  82. data/test/test_repo/dot_git/objects/c8/f101653f2c1de3611232fc4c940246b06779cd +0 -0
  83. data/test/test_repo/dot_git/objects/da/077394cb4d5bf7ffac527dbfc652ec0592b423 +2 -0
  84. data/test/test_repo/dot_git/objects/e1/ec08bcf36967f7be9ec6df51c862cc86305f4f +3 -0
  85. data/test/test_repo/dot_git/objects/e3/c2be348eb0873f7ac3f500ae6daaa93ebd7959 +0 -0
  86. data/test/test_repo/dot_git/objects/e5/e6f26a0481e83434feb2de4ef29843c8a1b8b2 +0 -0
  87. data/test/test_repo/dot_git/objects/e7/76acafd9b27ddcdd8e8a2c973b1fa1ccd690ab +3 -0
  88. data/test/test_repo/dot_git/objects/ff/74852f93c8e337b7ae3088c31cfe8673def356 +0 -0
  89. data/test/test_repo/dot_git/refs/heads/master +1 -0
  90. data/test/test_repo/feed.xml +30 -0
  91. data/test/test_repo/index.html +20 -0
  92. metadata +280 -0
@@ -0,0 +1,30 @@
1
+ ---
2
+ layout: none
3
+ ---
4
+ <?xml version="1.0" encoding="UTF-8"?>
5
+ <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
6
+ <channel>
7
+ <title>{{ site.title | xml_escape }}</title>
8
+ <description>{{ site.description | xml_escape }}</description>
9
+ <link>{{ site.url }}{{ site.baseurl }}/</link>
10
+ <atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml" />
11
+ <pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
12
+ <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
13
+ <generator>Jekyll v{{ jekyll.version }}</generator>
14
+ {% for post in site.posts limit:10 %}
15
+ <item>
16
+ <title>{{ post.title | xml_escape }}</title>
17
+ <description>{{ post.content | xml_escape }}</description>
18
+ <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
19
+ <link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
20
+ <guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
21
+ {% for tag in post.tags %}
22
+ <category>{{ tag | xml_escape }}</category>
23
+ {% endfor %}
24
+ {% for cat in post.categories %}
25
+ <category>{{ cat | xml_escape }}</category>
26
+ {% endfor %}
27
+ </item>
28
+ {% endfor %}
29
+ </channel>
30
+ </rss>
@@ -0,0 +1,20 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="home">
6
+
7
+ <h1>Posts</h1>
8
+
9
+ <ul class="posts">
10
+ {% for post in site.posts %}
11
+ <li>
12
+ <span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
13
+ <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
14
+ </li>
15
+ {% endfor %}
16
+ </ul>
17
+
18
+ <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
19
+
20
+ </div>
metadata ADDED
@@ -0,0 +1,280 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-git
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.3
5
+ platform: ruby
6
+ authors:
7
+ - joshpinto6
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-06-27 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: jekyll
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '4.0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '4.0'
26
+ - !ruby/object:Gem::Dependency
27
+ name: bundler
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '1.6'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.6'
40
+ - !ruby/object:Gem::Dependency
41
+ name: rake
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ - !ruby/object:Gem::Dependency
55
+ name: shoulda
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ type: :development
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ - !ruby/object:Gem::Dependency
69
+ name: mocha
70
+ requirement: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ type: :development
76
+ prerelease: false
77
+ version_requirements: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ description: Get access to Git information in your Jekyll templates
83
+ email:
84
+ - ''
85
+ executables: []
86
+ extensions: []
87
+ extra_rdoc_files: []
88
+ files:
89
+ - ".github/workflows/gem-push.yml"
90
+ - ".gitignore"
91
+ - ".travis.yml"
92
+ - Gemfile
93
+ - LICENSE.txt
94
+ - README.md
95
+ - Rakefile
96
+ - jekyll-git_metadata.gemspec
97
+ - lib/jekyll-git_metadata.rb
98
+ - lib/jekyll/git_metadata.rb
99
+ - lib/jekyll/git_metadata/generator.rb
100
+ - lib/jekyll/git_metadata/version.rb
101
+ - test/helper.rb
102
+ - test/test_git_metadata.rb
103
+ - test/test_repo/.gitignore
104
+ - test/test_repo/_config.yml
105
+ - test/test_repo/_gizmos/yoyo.md
106
+ - test/test_repo/_includes/footer.html
107
+ - test/test_repo/_includes/head.html
108
+ - test/test_repo/_includes/header.html
109
+ - test/test_repo/_layouts/default.html
110
+ - test/test_repo/_layouts/page.html
111
+ - test/test_repo/_layouts/post.html
112
+ - test/test_repo/_posts/2014-07-14-welcome-to-jekyll.markdown
113
+ - test/test_repo/about.md
114
+ - test/test_repo/css/main.css
115
+ - test/test_repo/dot_git/COMMIT_EDITMSG
116
+ - test/test_repo/dot_git/HEAD
117
+ - test/test_repo/dot_git/MERGE_RR
118
+ - test/test_repo/dot_git/ORIG_HEAD
119
+ - test/test_repo/dot_git/config
120
+ - test/test_repo/dot_git/description
121
+ - test/test_repo/dot_git/hooks/applypatch-msg.sample
122
+ - test/test_repo/dot_git/hooks/commit-msg.sample
123
+ - test/test_repo/dot_git/hooks/post-update.sample
124
+ - test/test_repo/dot_git/hooks/pre-applypatch.sample
125
+ - test/test_repo/dot_git/hooks/pre-commit.sample
126
+ - test/test_repo/dot_git/hooks/pre-push.sample
127
+ - test/test_repo/dot_git/hooks/pre-rebase.sample
128
+ - test/test_repo/dot_git/hooks/prepare-commit-msg.sample
129
+ - test/test_repo/dot_git/hooks/update.sample
130
+ - test/test_repo/dot_git/index
131
+ - test/test_repo/dot_git/info/exclude
132
+ - test/test_repo/dot_git/logs/HEAD
133
+ - test/test_repo/dot_git/logs/refs/heads/master
134
+ - test/test_repo/dot_git/objects/00/26c4c5df4d5148a07b9fbd790620f4e11d0802
135
+ - test/test_repo/dot_git/objects/0a/842bc255214909543fb198145783107e735907
136
+ - test/test_repo/dot_git/objects/0b/6d4b0cffe0117537f4ac31c918588c394778ef
137
+ - test/test_repo/dot_git/objects/0e/a9d20342677512902dde3175a73e1dd1059e67
138
+ - test/test_repo/dot_git/objects/13/30fa92b3c8d94ee3ebb645b04154e735c04cf1
139
+ - test/test_repo/dot_git/objects/1a/24ab60234bd846f0f1532f914d66ea986fadbb
140
+ - test/test_repo/dot_git/objects/25/d62f6feeb7190483f81564f4a76c1ec33d5118
141
+ - test/test_repo/dot_git/objects/32/3a65e20f0feb846438bbda1a0396ea2db7616e
142
+ - test/test_repo/dot_git/objects/32/fff15665e830f9bdd82ea46a906bd3cf1122b0
143
+ - test/test_repo/dot_git/objects/3d/32f2f8ec3470e6a88ad1f9096e539cec42a47a
144
+ - test/test_repo/dot_git/objects/3e/d64bb62b98b0827096cda5da5a728ec1bf5e3e
145
+ - test/test_repo/dot_git/objects/48/d97759a460f607e077eea99a2df7b3cd5a2601
146
+ - test/test_repo/dot_git/objects/4c/2dd956115a971f5376a998bc4b243022c8881e
147
+ - test/test_repo/dot_git/objects/4d/1b13c2e1ef1c1a944aae52994682da833a5bef
148
+ - test/test_repo/dot_git/objects/4d/7f8a4c1a1bac8d553ba169e18882a7f51235bd
149
+ - test/test_repo/dot_git/objects/59/821b143fbc62850d08e3f70c70d02af08df684
150
+ - test/test_repo/dot_git/objects/59/bc060e8c1fbe31c985e00c6cc2fef3b46c0c62
151
+ - test/test_repo/dot_git/objects/60/9711c27d50b5ab6ecc7d8fd485082481f9fc4a
152
+ - test/test_repo/dot_git/objects/62/61f5911f204a827c313081c33e2522f0dd457c
153
+ - test/test_repo/dot_git/objects/70/343eb1287191b30371400048167253a883d6ca
154
+ - test/test_repo/dot_git/objects/78/845656f899d0bfd86d2806b85b0c54adddd3c8
155
+ - test/test_repo/dot_git/objects/7f/9eb0e6044998d71653c06fdc6e359dfbfc4211
156
+ - test/test_repo/dot_git/objects/83/65a44c640d5c7cafc8788607a274dfd91b89bb
157
+ - test/test_repo/dot_git/objects/83/8ad7a02ebe551a90bea885c94191667f29009c
158
+ - test/test_repo/dot_git/objects/83/8daa5e0163161d6e47bd1b0d783ca7307066c6
159
+ - test/test_repo/dot_git/objects/88/090a3ea8ce80e49ea42d249836aaa25f257454
160
+ - test/test_repo/dot_git/objects/8d/1f788990d1f80ebcbe7b78c3e5c393b7a41943
161
+ - test/test_repo/dot_git/objects/99/117f666995e8836652d9590daa2fdcb4de8b2a
162
+ - test/test_repo/dot_git/objects/9e/00340e45d33e52bb16100f1b613a36f82f9c57
163
+ - test/test_repo/dot_git/objects/a9/f5097c614e0d4be7f900c04d782d3b1d675ee2
164
+ - test/test_repo/dot_git/objects/ae/45638b71046b28d46a764d8a2f7780fec58c01
165
+ - test/test_repo/dot_git/objects/af/415865cd1f1c0a5963a5d45b1335856e23dae8
166
+ - test/test_repo/dot_git/objects/b8/ffd38affdd1cc22ee4cb830cbe5c398b4e3df1
167
+ - test/test_repo/dot_git/objects/ba/a938862bbe45533863069649b40fdebf59e81c
168
+ - test/test_repo/dot_git/objects/c0/8f9add7a1d48045bec46451dfdbb5b5ebf8dc0
169
+ - test/test_repo/dot_git/objects/c8/f101653f2c1de3611232fc4c940246b06779cd
170
+ - test/test_repo/dot_git/objects/da/077394cb4d5bf7ffac527dbfc652ec0592b423
171
+ - test/test_repo/dot_git/objects/e1/ec08bcf36967f7be9ec6df51c862cc86305f4f
172
+ - test/test_repo/dot_git/objects/e3/c2be348eb0873f7ac3f500ae6daaa93ebd7959
173
+ - test/test_repo/dot_git/objects/e5/e6f26a0481e83434feb2de4ef29843c8a1b8b2
174
+ - test/test_repo/dot_git/objects/e7/76acafd9b27ddcdd8e8a2c973b1fa1ccd690ab
175
+ - test/test_repo/dot_git/objects/ff/74852f93c8e337b7ae3088c31cfe8673def356
176
+ - test/test_repo/dot_git/refs/heads/master
177
+ - test/test_repo/feed.xml
178
+ - test/test_repo/index.html
179
+ homepage: https://github.com/joshpinto6/jekyll-git
180
+ licenses:
181
+ - MIT
182
+ metadata:
183
+ homepage: https://github.com/joshpinto6/jekyll
184
+ source_code_uri: https://github.com/joshpinto6/jekyll-git
185
+ rdoc_options: []
186
+ require_paths:
187
+ - lib
188
+ required_ruby_version: !ruby/object:Gem::Requirement
189
+ requirements:
190
+ - - ">="
191
+ - !ruby/object:Gem::Version
192
+ version: '0'
193
+ required_rubygems_version: !ruby/object:Gem::Requirement
194
+ requirements:
195
+ - - ">="
196
+ - !ruby/object:Gem::Version
197
+ version: '0'
198
+ requirements: []
199
+ rubygems_version: 3.6.2
200
+ specification_version: 4
201
+ summary: Expose Git metadata to Jekyll.
202
+ test_files:
203
+ - test/helper.rb
204
+ - test/test_git_metadata.rb
205
+ - test/test_repo/.gitignore
206
+ - test/test_repo/_config.yml
207
+ - test/test_repo/_gizmos/yoyo.md
208
+ - test/test_repo/_includes/footer.html
209
+ - test/test_repo/_includes/head.html
210
+ - test/test_repo/_includes/header.html
211
+ - test/test_repo/_layouts/default.html
212
+ - test/test_repo/_layouts/page.html
213
+ - test/test_repo/_layouts/post.html
214
+ - test/test_repo/_posts/2014-07-14-welcome-to-jekyll.markdown
215
+ - test/test_repo/about.md
216
+ - test/test_repo/css/main.css
217
+ - test/test_repo/dot_git/COMMIT_EDITMSG
218
+ - test/test_repo/dot_git/HEAD
219
+ - test/test_repo/dot_git/MERGE_RR
220
+ - test/test_repo/dot_git/ORIG_HEAD
221
+ - test/test_repo/dot_git/config
222
+ - test/test_repo/dot_git/description
223
+ - test/test_repo/dot_git/hooks/applypatch-msg.sample
224
+ - test/test_repo/dot_git/hooks/commit-msg.sample
225
+ - test/test_repo/dot_git/hooks/post-update.sample
226
+ - test/test_repo/dot_git/hooks/pre-applypatch.sample
227
+ - test/test_repo/dot_git/hooks/pre-commit.sample
228
+ - test/test_repo/dot_git/hooks/pre-push.sample
229
+ - test/test_repo/dot_git/hooks/pre-rebase.sample
230
+ - test/test_repo/dot_git/hooks/prepare-commit-msg.sample
231
+ - test/test_repo/dot_git/hooks/update.sample
232
+ - test/test_repo/dot_git/index
233
+ - test/test_repo/dot_git/info/exclude
234
+ - test/test_repo/dot_git/logs/HEAD
235
+ - test/test_repo/dot_git/logs/refs/heads/master
236
+ - test/test_repo/dot_git/objects/00/26c4c5df4d5148a07b9fbd790620f4e11d0802
237
+ - test/test_repo/dot_git/objects/0a/842bc255214909543fb198145783107e735907
238
+ - test/test_repo/dot_git/objects/0b/6d4b0cffe0117537f4ac31c918588c394778ef
239
+ - test/test_repo/dot_git/objects/0e/a9d20342677512902dde3175a73e1dd1059e67
240
+ - test/test_repo/dot_git/objects/13/30fa92b3c8d94ee3ebb645b04154e735c04cf1
241
+ - test/test_repo/dot_git/objects/1a/24ab60234bd846f0f1532f914d66ea986fadbb
242
+ - test/test_repo/dot_git/objects/25/d62f6feeb7190483f81564f4a76c1ec33d5118
243
+ - test/test_repo/dot_git/objects/32/3a65e20f0feb846438bbda1a0396ea2db7616e
244
+ - test/test_repo/dot_git/objects/32/fff15665e830f9bdd82ea46a906bd3cf1122b0
245
+ - test/test_repo/dot_git/objects/3d/32f2f8ec3470e6a88ad1f9096e539cec42a47a
246
+ - test/test_repo/dot_git/objects/3e/d64bb62b98b0827096cda5da5a728ec1bf5e3e
247
+ - test/test_repo/dot_git/objects/48/d97759a460f607e077eea99a2df7b3cd5a2601
248
+ - test/test_repo/dot_git/objects/4c/2dd956115a971f5376a998bc4b243022c8881e
249
+ - test/test_repo/dot_git/objects/4d/1b13c2e1ef1c1a944aae52994682da833a5bef
250
+ - test/test_repo/dot_git/objects/4d/7f8a4c1a1bac8d553ba169e18882a7f51235bd
251
+ - test/test_repo/dot_git/objects/59/821b143fbc62850d08e3f70c70d02af08df684
252
+ - test/test_repo/dot_git/objects/59/bc060e8c1fbe31c985e00c6cc2fef3b46c0c62
253
+ - test/test_repo/dot_git/objects/60/9711c27d50b5ab6ecc7d8fd485082481f9fc4a
254
+ - test/test_repo/dot_git/objects/62/61f5911f204a827c313081c33e2522f0dd457c
255
+ - test/test_repo/dot_git/objects/70/343eb1287191b30371400048167253a883d6ca
256
+ - test/test_repo/dot_git/objects/78/845656f899d0bfd86d2806b85b0c54adddd3c8
257
+ - test/test_repo/dot_git/objects/7f/9eb0e6044998d71653c06fdc6e359dfbfc4211
258
+ - test/test_repo/dot_git/objects/83/65a44c640d5c7cafc8788607a274dfd91b89bb
259
+ - test/test_repo/dot_git/objects/83/8ad7a02ebe551a90bea885c94191667f29009c
260
+ - test/test_repo/dot_git/objects/83/8daa5e0163161d6e47bd1b0d783ca7307066c6
261
+ - test/test_repo/dot_git/objects/88/090a3ea8ce80e49ea42d249836aaa25f257454
262
+ - test/test_repo/dot_git/objects/8d/1f788990d1f80ebcbe7b78c3e5c393b7a41943
263
+ - test/test_repo/dot_git/objects/99/117f666995e8836652d9590daa2fdcb4de8b2a
264
+ - test/test_repo/dot_git/objects/9e/00340e45d33e52bb16100f1b613a36f82f9c57
265
+ - test/test_repo/dot_git/objects/a9/f5097c614e0d4be7f900c04d782d3b1d675ee2
266
+ - test/test_repo/dot_git/objects/ae/45638b71046b28d46a764d8a2f7780fec58c01
267
+ - test/test_repo/dot_git/objects/af/415865cd1f1c0a5963a5d45b1335856e23dae8
268
+ - test/test_repo/dot_git/objects/b8/ffd38affdd1cc22ee4cb830cbe5c398b4e3df1
269
+ - test/test_repo/dot_git/objects/ba/a938862bbe45533863069649b40fdebf59e81c
270
+ - test/test_repo/dot_git/objects/c0/8f9add7a1d48045bec46451dfdbb5b5ebf8dc0
271
+ - test/test_repo/dot_git/objects/c8/f101653f2c1de3611232fc4c940246b06779cd
272
+ - test/test_repo/dot_git/objects/da/077394cb4d5bf7ffac527dbfc652ec0592b423
273
+ - test/test_repo/dot_git/objects/e1/ec08bcf36967f7be9ec6df51c862cc86305f4f
274
+ - test/test_repo/dot_git/objects/e3/c2be348eb0873f7ac3f500ae6daaa93ebd7959
275
+ - test/test_repo/dot_git/objects/e5/e6f26a0481e83434feb2de4ef29843c8a1b8b2
276
+ - test/test_repo/dot_git/objects/e7/76acafd9b27ddcdd8e8a2c973b1fa1ccd690ab
277
+ - test/test_repo/dot_git/objects/ff/74852f93c8e337b7ae3088c31cfe8673def356
278
+ - test/test_repo/dot_git/refs/heads/master
279
+ - test/test_repo/feed.xml
280
+ - test/test_repo/index.html