Questions tagged [gitweb]

Gitweb is a Git repository web interface.

GitWeb is a Git repository web interface.

Using GitWeb you can browse directory trees at arbitrary revisions, view contents of files (blobs), see log or shortlog of a given branch, examine commits, commit messages and changes made by a given commit. GitWeb can generate feeds in RSS or Atom format. You can get any given version of a file; if not disabled you can download a snapshot of a given version of a project (project tree at given revision). You can search (if it is not disabled) for commits by an author, added to repository by a comitter, commit with commit message (commit description) which includes some text.

133 questions
1
vote
1 answer

Can't see branches in gitweb installation

I'm running gitweb without anything like gitolite or gitosis or whatever. My project is showing up fine, but none of my branches are. I can only see "master". Is there some kind of file I need to edit in order to show this? Here's the apache…
Jelle De Loecker
  • 20,999
  • 27
  • 100
  • 142
0
votes
1 answer

How to set up git instaweb on Ubuntu 22.10?

I am trying to get GitWeb work on newly installed system. I have already updated the system and installed git and lighttpd. But when I am running git instaweb everything that I see is (configfile.c.426) Warning: mod_auth should be listed in…
sergey
  • 1
  • 1
0
votes
0 answers

Gitweb on gerrit can't open

I granted read access for refs/* and refs/meta/config ,but he still can't open gitweb, I missed any settings? I browser the documentation, it said to grant the read access for the two permissions, but it can't work.
Fiona
  • 1
  • 1
0
votes
0 answers

Is there any way to get raw data from .git folder?

I was trying to make my own git server. Something similar to github. Its made using a vm instance in GCP. I would like to add the feature of directly viewing the text in the files as well as the folder structure. But as per the current architecture,…
0
votes
2 answers

Gitweb not displaying correctly

I tried setting up gitweb, but when I load the page, it comes out weird... Edit: In case people misunderstood, this is what it should look like: This is what my lighttpd configuration file looks like: server.port = 80 server.username =…
someguy
  • 7,144
  • 12
  • 43
  • 57
0
votes
2 answers

How to find out which Git hosting application a repository is served by?

For a small git helper script, based on this blog post, I'd like to be able to "discover" in which Git hosting app, a given remote URL (user@git.domain.tld:namespace/project.git) points to (e.g. GitLab CE/EE, Gitea, GHE, etc). Using curl --head I…
Katrin Leinweber
  • 1,316
  • 13
  • 33
0
votes
0 answers

How do I enable "blame" when using git instaweb?

From the working directory of a git repository, I start git instaweb using git instaweb --httpd=webrick. However, in the tree view of the resulting website, there is no link to each file's "blame". I tried to enable "blame" by adding the following…
Flux
  • 9,805
  • 5
  • 46
  • 92
0
votes
0 answers

configuring gitweb in RHEL

My setup is Red Hat Enterprise Linux. I have successfully installed Git, gitosis, Gitweb and Apache packages. However, I have not figured out how to configure Apache and gitweb. Most of the document for gitweb are more or less same , but i get error…
maestromani
  • 841
  • 1
  • 9
  • 31
0
votes
1 answer

Gitweb hosted using apache2 - Root folder can only be set in /home

I am trying to make the root directory for my gitweb to be a media drive (eg. /media/pi/my_usb) In my /etc/gitweb.conf I have the following root: $projectroot = "/home/git"; With this I am able to see all repositories in this directory, which is…
Kenny Ye
  • 587
  • 1
  • 5
  • 12
0
votes
1 answer

Unable to start gerrit.sh and thus unable to use gitweb

I am unable to start the gerrit.sh script. while running this script, it says starting failed. Below is the error that i can see in the error_log: [2018-09-10 02:05:13,886] ERROR com.google.gerrit.pgm.Daemon : Unable to start…
Saurabhdv27
  • 39
  • 1
  • 8
0
votes
2 answers

How to create stable checksums for auto-generated TarGZ archives?

For a build script, I need to work with source packages of a certain version. In order to not having to include big source archives, the scripts just stores their checksums (SHA1) and downloads them automatically. This works very well for official…
vog
  • 23,517
  • 11
  • 59
  • 75
0
votes
1 answer

"Pull request"-like diff view with gitweb

I'm using gitweb, and I'd like to view a combined diff of a range of commits (e.g. all commits that exist on a branch, but not master). Basically I'm looking for a poor man's GitHub pull-request diff view. The closest I've found is modifying the…
Leif Gruenwoldt
  • 13,561
  • 5
  • 60
  • 64
0
votes
1 answer

Aliasing gitweb css in apache2?

On an Ubuntu Server 14.04, I have $ apt-show-versions apache2 apache2:amd64/trusty-updates 2.4.7-1ubuntu4.9 uptodate Here, I installed gitweb, and tried to set it up. Eventually, I managed to get it working by adding the following to my…
sdaau
  • 36,975
  • 46
  • 198
  • 278
0
votes
1 answer

nginx git folder request

Im using nginx and git-web and it works great. I access my site using www.mydomain.org to pull up gitweb. Here is my config file: server { listen 80 default_server; listen [::]:80 default_server; server_name www.mydomain.org; return…
adviner
  • 3,295
  • 10
  • 35
  • 64
0
votes
2 answers

Gitweb - 404 - No projects found

I have a DigitalOcean droplet with Centos 7 but I can't see my repos on my droplet. I have a user git and inside the respective home folder I have the folder "projects": /home/git/projects Inside that folder is a test repo initialized with: git init…
1 2 3
8
9