Bazaar: Difference between revisions

From ArchWiki
(Update Interlanguage link)
(Merge with List of applications/Utilities#Version control systems, merge was not contested.)
Tag: New redirect
 
(15 intermediate revisions by 8 users not shown)
Line 1: Line 1:
[[Category:Version Control System]]
#REDIRECT [[List of applications/Utilities#Version control systems]]
[[Category:Canonical]]
[[es:Bazaar]]
[[ja:Bazaar]]
[[zh-hans:Bazaar]]
[https://bazaar.canonical.com/ Bazaar] is a version control system that helps you track project history over time and to collaborate easily with others.
 
== Installation ==
 
[[Install]] the {{AUR|bzr}} package. For the development version, install the {{AUR|bzr-bzr}} package. The Bazaar Explorer is provided by the {{AUR|bzr-explorer}} package.
 
== Usage ==
 
See {{man|1|bzr}}{{Dead link|2020|02|22}}.
 
=== Setting up Bazaar server with xinetd ===
 
Add a {{ic|''bzr-usr''}} [[user]] if needed.
 
Create a repository:
 
$ bzr init /home/bzr/repo.bzr
$ chown -R ''bzr_usr'' /home/bzr/repo.bzr
 
Add configuration for ''xinetd'':
 
{{bc|1=
service bzr
{
flags = REUSE
socket_type = stream
wait = no
user = ''bzr_usr''
server = /usr/bin/bzr
server_args = serve --inet --directory=/home/bzr/repo.bzr
env = HOME=/home/bzr
log_on_failure += USERID
disable = no
cps = 50 10
instances = 60
}
}}

Latest revision as of 11:34, 7 October 2023