2.31 KB
/srv/reproducible-results/rbuild-debian/r-b-build.mKSbGfFv/b1/r-cran-gert_1.9.2+dfsg-1_amd64.changes vs.
/srv/reproducible-results/rbuild-debian/r-b-build.mKSbGfFv/b2/r-cran-gert_1.9.2+dfsg-1_amd64.changes
310 B
Files
    
Offset 1, 3 lines modifiedOffset 1, 3 lines modified
  
1 ·765aaade747d2baaa9567fbc1ff5d9b6·78736·debug·optional·r-cran-gert-dbgsym_1.9.2+dfsg-1_amd64.deb1 ·765aaade747d2baaa9567fbc1ff5d9b6·78736·debug·optional·r-cran-gert-dbgsym_1.9.2+dfsg-1_amd64.deb
2 ·6098c6582f8035625effe4d99bc41d49·239908·gnu-r·optional·r-cran-gert_1.9.2+dfsg-1_amd64.deb2 ·0ba2d4548338312a705229a9ebc7bc44·239908·gnu-r·optional·r-cran-gert_1.9.2+dfsg-1_amd64.deb
1.81 KB
r-cran-gert_1.9.2+dfsg-1_amd64.deb
98.0 B
control.tar.xz
70.0 B
control.tar
48.0 B
./md5sums
30.0 B
./md5sums
Files differ
1.65 KB
data.tar.xz
1.63 KB
data.tar
1.61 KB
./usr/lib/R/site-library/gert/doc/gert.html
    
Offset 123, 15 lines modifiedOffset 123, 15 lines modified
123 git·config·--global·user.email·'jerry@gmail.com'123 git·config·--global·user.email·'jerry@gmail.com'
124 git·config·--global·--list124 git·config·--global·--list
125 </code></pre>125 </code></pre>
126 <p>To·inspect·and·change·local·Git·config,·i.e.·options·specific·to·one·repository,·use·<code>git_config()</code>·and·<code>git_config_set()</code>.</p>126 <p>To·inspect·and·change·local·Git·config,·i.e.·options·specific·to·one·repository,·use·<code>git_config()</code>·and·<code>git_config_set()</code>.</p>
127 <h2>Local·repository·basics</h2>127 <h2>Local·repository·basics</h2>
128 <p><code>gert::git_init()</code>·is·essentially·<code>git·init</code>;·it’s·how·we·create·a·new·local·repository.·You·provide·the·path·to·the·repository·you·want·to·create.</p>128 <p><code>gert::git_init()</code>·is·essentially·<code>git·init</code>;·it’s·how·we·create·a·new·local·repository.·You·provide·the·path·to·the·repository·you·want·to·create.</p>
129 <pre><code·class="language-r">(path·&lt;-·file.path(tempdir(),·&quot;aaa&quot;,·&quot;bbb&quot;,·&quot;repo_ccc&quot;))129 <pre><code·class="language-r">(path·&lt;-·file.path(tempdir(),·&quot;aaa&quot;,·&quot;bbb&quot;,·&quot;repo_ccc&quot;))
130 #&gt;·[1]·&quot;/tmp/RtmpCSt1OQ/aaa/bbb/repo_ccc&quot;130 #&gt;·[1]·&quot;/tmp/RtmpyD5NRs/aaa/bbb/repo_ccc&quot;
131 dir.exists(path)131 dir.exists(path)
132 #&gt;·[1]·FALSE132 #&gt;·[1]·FALSE
  
133 (r·&lt;-·git_init(path))133 (r·&lt;-·git_init(path))
134 #&gt;·Error·in·git_init(path):·could·not·find·function·&quot;git_init&quot;134 #&gt;·Error·in·git_init(path):·could·not·find·function·&quot;git_init&quot;
135 dir.exists(path)135 dir.exists(path)
136 #&gt;·[1]·FALSE136 #&gt;·[1]·FALSE
676 B
html2text {}
    
Offset 32, 15 lines modifiedOffset 32, 15 lines modified
32 git·config·--global·--list32 git·config·--global·--list
33 To·inspect·and·change·local·Git·config,·i.e.·options·specific·to·one33 To·inspect·and·change·local·Git·config,·i.e.·options·specific·to·one
34 repository,·use·git_config()·and·git_config_set().34 repository,·use·git_config()·and·git_config_set().
35 *****·Local·repository·basics·*****35 *****·Local·repository·basics·*****
36 gert::git_init()·is·essentially·git·init;·it’s·how·we·create·a·new·local36 gert::git_init()·is·essentially·git·init;·it’s·how·we·create·a·new·local
37 repository.·You·provide·the·path·to·the·repository·you·want·to·create.37 repository.·You·provide·the·path·to·the·repository·you·want·to·create.
38 (path·<-·file.path(tempdir(),·"aaa",·"bbb",·"repo_ccc"))38 (path·<-·file.path(tempdir(),·"aaa",·"bbb",·"repo_ccc"))
39 #>·[1]·"/tmp/RtmpCSt1OQ/aaa/bbb/repo_ccc"39 #>·[1]·"/tmp/RtmpyD5NRs/aaa/bbb/repo_ccc"
40 dir.exists(path)40 dir.exists(path)
41 #>·[1]·FALSE41 #>·[1]·FALSE
  
42 (r·<-·git_init(path))42 (r·<-·git_init(path))
43 #>·Error·in·git_init(path):·could·not·find·function·"git_init"43 #>·Error·in·git_init(path):·could·not·find·function·"git_init"
44 dir.exists(path)44 dir.exists(path)
45 #>·[1]·FALSE45 #>·[1]·FALSE