Bug 1008

Summary: show git clone url in gitweb
Product: Libre-SOC Website Reporter: Jacob Lifshay <programmerjake>
Component: websiteAssignee: Luke Kenneth Casson Leighton <lkcl>
Status: CONFIRMED ---    
Severity: enhancement CC: libre-soc-bugs
Priority: ---    
Version: unspecified   
Hardware: PC   
OS: Linux   
NLnet milestone: --- total budget (EUR) for completion of task and all subtasks: 0
budget (EUR) for this task, excluding subtasks' budget: 0 parent task for budget allocation:
child tasks for budget allocation: The table of payments (in EUR) for this task; TOML format:

Description Jacob Lifshay 2023-02-28 03:46:13 GMT
apparently you can do that by setting @git_base_url_list in gitweb.conf:
https://git-scm.com/docs/gitweb.conf#Documentation/gitweb.conf.txt-gitbaseurllist

afaict we'd want to set it to:

push @git_base_url_list, "https://git.libre-soc.org/git";
push @git_base_url_list, "ssh://gitolite3@git.libre-soc.org:922";
push @git_base_url_list, "git://git.libre-soc.org";
Comment 1 Luke Kenneth Casson Leighton 2023-02-28 10:11:51 GMT
that's a good idea, saves time. hmm not with utils.git on the end though
Comment 2 Jacob Lifshay 2023-02-28 10:16:37 GMT
(In reply to Luke Kenneth Casson Leighton from comment #1)
> that's a good idea, saves time. hmm not with utils.git on the end though

oh, yeah, oops. i tested the clone urls by cloning utils.git but forgot to remove it...