Git : Access to Repos via HTTP2023/07/25 |
Configure to access to Repos via HTTP.
|
|
[1] | |
[2] | |
[3] | Configure Apache2 to access to Git repositories. For example, set [/var/lib/git] as a root directory for Git repositories. |
root@dlp:~#
vi /etc/apache2/conf-available/git.conf # create new SetEnv GIT_PROJECT_ROOT /var/lib/git SetEnv GIT_HTTP_EXPORT_ALL ScriptAlias /git/ /usr/lib/git-core/git-http-backend/ <Location /git> Options ExecCGI AuthName "Git for HTTP" AuthType Basic AuthUserFile /etc/apache2/.htpasswd Require valid-user </Location> a2enconf git root@dlp:~# a2enmod cgi rewrite
root@dlp:~#
systemctl restart apache2
# add user : create a new file with [-c] root@dlp:~# htpasswd -c /etc/apache2/.htpasswd debian New password: # set password Re-type new password: Adding password for user debian |
[4] | Create a Git repository under the root directory. |
root@dlp:~# cd /var/lib/git root@dlp:/var/lib/git# mkdir project01.git root@dlp:/var/lib/git# cd project01.git root@dlp:/var/lib/git/project01.git# git init --bare --shared hint: Using 'master' as the name for the initial branch. This default branch name hint: is subject to change. To configure the initial branch name to use in all hint: of your new repositories, which will suppress this warning, call: hint: hint: git config --global init.defaultBranch <name> hint: hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and hint: 'development'. The just-created branch can be renamed via this command: hint: hint: git branch -m <name> Initialized empty shared Git repository in /var/lib/git/project01.git/root@dlp:/var/lib/git/project01.git# chgrp -R www-data /var/lib/git/project01.git
|
[5] | Verify to access to a Git repository via HTTP. |
# the user is you added with htpasswd on [3] bookworm@node01:~/work$ git clone https://debian@dlp.srv.world/git/project01.git
Cloning into 'project01'...
Password for 'https://debian@dlp.srv.world': # password of the user in htpasswd
warning: You appear to have cloned an empty repository.
bookworm@node01:~/work$
bookworm@node01:~/work/project01$ cd project01 bookworm@node01:~/work/project01$ git config --global user.name "Server World" bookworm@node01:~/work/project01$ git config --global user.email "bookworm@node01.srv.world"
echo testfile > testfile1.txt bookworm@node01:~/work/project01$ git add testfile1.txt bookworm@node01:~/work/project01$ git commit testfile1.txt -m "Initial Commit" [master (root-commit) 9cf5686] Initial Commit 1 file changed, 1 insertion(+) create mode 100644 testfile1.txtbookworm@node01:~/work/project01$ git remote -v origin https://debian@dlp.srv.world/git/project01.git (fetch) origin https://debian@dlp.srv.world/git/project01.git (push)bookworm@node01:~/work/project01$ git push origin master Password for 'https://debian@dlp.srv.world': Enumerating objects: 3, done. Counting objects: 100% (3/3), done. Writing objects: 100% (3/3), 235 bytes | 235.00 KiB/s, done. Total 3 (delta 0), reused 0 (delta 0), pack-reused 0 To https://dlp.srv.world/git/project01.git * [new branch] master -> masterbookworm@node01:~/work/project01$ git ls-files testfile1.txt |
Sponsored Link |