search
HomeBackend DevelopmentPHP TutorialInstalling GitList for Local Repos

Installing GitList for Local Repos

While GitHub is an excellent solution for code collaboration and repository management, some individuals and companies prefer to maintain code in the intranet for security reasons. It is easy to provide warehouse access on the local intranet, but it is not that simple to have a friendly interface to interact with these warehouses and simplify team collaboration. Git comes with a web interface gitweb, but it is not elegant and modern enough, it is difficult to view changes, authors and time, and browsing workspaces is also quite cumbersome. Some other solutions are difficult to install or the interface is not friendly enough. Recently I discovered GitList, a free and open source Git repository viewer. Its interface is very similar to GitHub, but it focuses more on conciseness and clarity. This article will guide you to set up your own Git repository viewer. Don't worry, it's simple, faster than installing WordPress!

Environmental preparation

This guide assumes that you are using a Debian-based Linux distribution, but GitList can run on any system. You need:

  • Apache Server (enable mod_rewrite) or Nginx
  • Git
  • PHP 5.3 or later

If it is not installed yet, please run it in the terminal:

sudo apt-get update
sudo apt-get install php5 apache2 git

I also assume that your environment is as follows:

  • Git repository path: /home/bob/code
  • Apache document root directory: /var/www
  • Git executable file path: /usr/bin/git
  • Apache root URL: http://localhost

Apache users will access your Git repository, so you need to set the correct access permissions:

sudo chmod -R 744 /home/bob/code

Installing and configuring GitList

First, download GitList. You can choose the latest stable version or major version, but be aware that there may be bugs in the main version because the developers are still actively developing. After selecting the package, unzip it into the gitlist folder in the root directory of the Apache document.

Next to configure GitList! Rename the config.ini-example file to config.ini, open it with a text editor and make sure its content is as follows:

[git]
client = '/usr/bin/git' ; Git可执行文件路径
repositories = '/home/bob/code/' ; 仓库路径

; 可以隐藏GitList中的仓库,为每个要隐藏的仓库复制此行
; hidden[] = '/home/bob/code/SecretProject'

[app]
baseurl = 'http://localhost/gitlist' ; 应用的基准URL

; 如果需要为特定扩展名指定自定义文件类型,请在此处进行设置
[filetypes]
; extension = type
; dist = xml

The last step: Create a folder named /var/www/gitlist in the cache directory and give it the correct permissions:

cd /var/www/gitlist
mkdir cache
chmod 777 cache

Now visit http://localhost/gitlist to check.

Help! Page not found!

GitList uses Apache's mod_rewrite module to create a friendly URL. If the page is not found, make sure Apache is enabled: mod_rewrite:

sudo a2enmod rewrite

Also make sure Apache can read the .htaccess files in the GitList directory. .htaccess Files are used to overwrite and add new rules for Apache directories. Open your default Apache website profile (usually located at /etc/apache2/sites-enabled/000-default) and look for the following:

<Directory></Directory>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    allow from all

Change the AllowOverride option from None to All. Save changes and restart Apache:

sudo apt-get update
sudo apt-get install php5 apache2 git

Custom

GitList interface is built using Twitter Bootstrap and LESS. The LESS file is located in the web/less directory. A Makefile is provided, so you can generate the final CSS file by simply customizing the LESS file to your preferences and running web in the make directory. Of course, you need to install lessc, which can be done easily by running npm install less. GitList is powered by the Twig template engine, and all templates are located in the views directory. To better understand how it works, it is recommended that you read the related Twig tutorial. After modifying the .twig file, be sure to clear the contents of the cache folder!

(Picture from Fotolia)

(The following is the FAQ part, which has been adjusted and streamlined according to the original content to avoid duplication)

FAQ (FAQ)

  • What are the prerequisites for installing GitList? Requires PHP 5.3.3 or later, Git and Composer.

  • How to clone a GitList repository? Run git clone https://github.com/klaussilveira/gitlist.git.

  • How to configure GitList? Edit config.ini files, configure repository paths, Git clients, etc.

  • How to install dependencies using Composer? Run composer install.

  • How to set the .htaccess file? Make sure Apache is enabled and set mod_rewrite to AllowOverride. All

  • How to access GitList after installation? Access the URL of your GitList directory, such as . http://localhost/gitlist

  • Apart from Apache, can GitList be used with other servers? Yes, for example, Nginx or IIS, but the configuration may be different.

  • How to update GitList? Run and git pull. composer install

  • Can you customize the appearance of GitList? You can modify the CSS file in the directory, but it may be overwritten when updating GitList. public

  • What should I do if I encounter problems during the installation process? Check for error messages, refer to GitList issues on GitHub or seek help.

The above is the detailed content of Installing GitList for Local Repos. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Customizing/Extending Frameworks: How to add custom functionality.Customizing/Extending Frameworks: How to add custom functionality.Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),