16

Pijul: a distributed version control system (written in Rust)

 4 years ago
source link: https://nest.pijul.com/pijul_org/pijul
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Pijul

Pijul is a version control system based on patches . Its fundamental promise is that two patches producible in parallel always commute. This makes the whole system more correct, and much simpler to use, as explained in the manual .

License

The license is GPL2, or any later version at your convenience. This was changed from the time when Pijul was still a prototype, and had another license.

Getting Started

Pijul depends on libsodium and openssl . They are not always easy to install. On Unix platforms, we recommend the Nix package manager to start hacking on Pijul.

There are packages for a number of platforms, including NixOS , Brew for OSX, our own builds for Windows, Aur for Arch Linux, among others.

With the latest stable Rust installed, Pijul can also be compiled and installed using:

cargo install --force pijul

The --force flag is used so you can upgrade Pijul if you have a previous version already installed. Once the command has been executed, you can find the pijul binary in ~/.cargo/bin/ . You might want to add an alias in your shell profile.

Pijul looks for its configuration in $PIJUL_CONFIG_DIR first, then in $HOME/.pijulconfig if the former is not set.

Community

Our website has instructions on how to reach out.

Feature or bug?

Pijul, like any software, has bugs. In the past, some users have started believing that our bugs are "design choices", and have blamed us for our poor decisions.

If this happens to you, the best thing to do is to talk to us. The Pijul team strongly believes in positive criticism. If you believe something doesn't behave as expected, if the code looks "complex", if you don't understand the documentation, please reach out.

In most cases, it is a bug. In some others, there are very good reasons for some design choices. It might be the case that we found counter-intuitive examples in the past, that break more "natural" or "naive" approaches.

Contributing

We welcome contributions, even if you understand nothing of patch theory. See the discussions in this repository to find tasks to do.

The first step towards contributing is to clone the repositories . Pijul depends on a number of packages maintained by the same team, the two largest ones beingSanakirja andThrussh. Here is how to build and install the pijul repositories:

$ pijul clone https://nest.pijul.com/pijul_org/pijul
$ cd pijul
$ cargo build

If you want to replace the version installed by Cargo with you own build, it is as simple as:

$ cargo install --force --path pijul

By contributing, you agree to make all your contributions GPL2+.

Moreover, the main platform for contributing isthe Nest, which is still somewhat experimental. Therefore, even though we do our best to avoid it, our repository might be reset, causing the patches of all contributors to be merged. Feel free to add your name in CONTRIBUTORS.md.

If you want to propose a change, you should proceed as follows:

  1. Create a new discussion on the Nest , to gather feedback on your proposal.
  2. Make your change, record a patch (by using pijul record ).
  3. Push it to the Nest. It is not necessary (and actually not even useful) to fork the project on the Nest, as changes can be pushed directly to discussions. After creating a discussion, one can push a patch directly to the corresponding branch. For instance, discussion 271 has branch name ":271", and patches can be pushed using:
pijul push <user>@nest.pijul.com:pijul_org/pijul --to-branch :271

We use rustfmt to enforce a coding style on pijul source code. You can have a look at the rustfmt repository for how to install it. To be sure not to forget to run rustfmt before recording your change, you can use the pre-hook hook, by creating an executable file at .pijul/hooks/pre-record , with the following content:

#!/usr/bin/bash

cargo fmt -- --check

Please make sure to comply with the rustfmt coding style before submitting your patches!


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK