Bazaar

Bazaar is a version control system that helps you track project history over time and to collaborate easily with others.

Installation

Install the bzrAUR package.

Usage

See bzr(1).

Setting up Bazaar server with xinetd

Add a 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:

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
}
gollark: You'll have a Minoteaur server on your server and that server will serve served Minoteaur to nonservers.
gollark: There will be a backend server also.
gollark: Besides, it's an actual in browser one, not Electron.
gollark: There are not, as far as I know, actually that many good sane ways to do cross platform UI/other stuff which would not require me to write tons of platform code anyway.
gollark: Wrong.
This article is issued from Archlinux. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.