Reputation: 9304
What i want is a git web interface which can show a limited set of information about my git repo. For example, i don't want the source code to be available, but i do want the git log to be.
Is there any git web solution which can be customized for this usecase?
Upvotes: 2
Views: 349
Reputation: 9304
Thanks for the responses, i ended up with going for something more heavyweight.
Its highly customizable, and i could set rules for which user groups should and shouldn't be able to see the source code.
Upvotes: 0
Reputation: 1323135
You can:
DirectoryIndex: myScript.pl
)my $output=`./cgit.cgi\` or my $output=`./gitweb.pl`
That way, you control exactly what you want to display, based on existing web interfaces.
Upvotes: 2