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: PotatOS is several thousand lines of cryptic incomprehensible code and doesn't include trigonometry anywhere!
gollark: No use randomly writing mathematical code for a random platform when I have no idea what to do with it.
gollark: I don't see why I would want that, and that's not listed, but I imagine you could implement it.
gollark: <@201096871341588480> Actually, I might as well just link you the docs, this lists all the stuff it can do in MicroPython: https://microbit-micropython.readthedocs.io/en/v1.0.1/microbit_micropython_api.html
gollark: Help make the communist revolution more inevitable and use "comrades"!
This article is issued from Archlinux. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.