Dirk Mueller
483dbc7bc8
* Revert the "git patch-id" change that went into 2.46.1, as it seems to have got a regression reported (I haven't verified, but it is better to keep a known breakage than adding an unintended regression). * In a few corner cases "git diff --exit-code" failed to report "changes" (e.g., renamed without any content change), which has been corrected. * The interpret-trailers command failed to recognise the end of the message when the commit log ends in an incomplete line. OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/git?expand=0&rev=658
16 lines
361 B
Plaintext
16 lines
361 B
Plaintext
Alias /git "/usr/share/gitweb/"
|
|
|
|
<Directory "/usr/share/gitweb">
|
|
Options ExecCGI
|
|
AllowOverride None
|
|
AddHandler cgi-script .cgi
|
|
DirectoryIndex gitweb.cgi
|
|
<IfModule mod_access_compat.c>
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfModule>
|
|
<IfModule !mod_access_compat.c>
|
|
Require all granted
|
|
</IfModule>
|
|
</Directory>
|