Oaf is a Git client that brings a more user-friendly CLI to Git. It is mainly a wrapper, but does use libgit2 for some things.
It's based on the following ideas:
- Merge is used to apply the changes introduced in another branch to the current branch.
- The commits done in a branch are different from the commits merged into a branch.
- Merges are a good thing that should be encouraged. They prevent conflicts from happening later, by establishing a clear precedence between two sets of changes.
- Merges can introduce logical conflicts, so the user should have the opportunity to test a merge before committing it.
- Push and Pull are operations to synchronize two copies of the same branch.
--
is used to separate options from inputs that might look like options, not to separate file inputs from other kinds of inputs.- Working on several branches at once should be as easy as possible.
- Users should have the opportunity to see what changes would be introduced by merging their current work into its eventual target.
- It is usually a bad idea to commit a version of the code that has never existed on disk.
- The Git index (staging area/cache) is an implementation detail that is not useful to most users.
- History is valuable, and should usually be preserved. It allows later readers to understand the precise context in which a change was introduced.
merge-diff
command to show what would happen if you committed and and merged your changes into a branch.cat
command to retrieve old versions of files.fake-merge
to pretend to merge a branch, while actually making no changes to your local contents.squash-commit
convert the current set of commits into a single commit.ignore
ignores the specified files by updating .gitignoreignore-changes
prevents "commit", "status", etc. from noticing changes to a file that have been added.push-tags
. Push tags to a repository. Since this applies to tags and repositories, not branches, it seemed better to give the functionality to a separate command.
Oaf supports dividing work up into several pieces, like Stacked Git. In Stacked Git, these are represented as a new "Patch" concept, but in Oaf, each piece of work is a branch that depends on the previous branch. The progression of branches that build on each-other is a "pipeline".
To add a new branch to the end of the pipeline, use switch-next -c <next-name>
(replace with your own value). To adopt an existing
branch as the next branch, use next-branch <next-name>
.
To show the pipeline, use pipeline
. To switch between branches in the
pipeline, use switch-next
and switch-prev
. These are conveniences, and
switch
can also be used as normal.
To remove a branch from its pipeline, use disconnect-branch
.
This functionality is based on my earlier bzr-pipeline plugin, and still has some feature gaps.
In particular, it does not provide a way to make a
change to an early branch and automatically propagate the change
into all later branches. (In bzr-pipeline, this was the pump
subcommand).
Support for merge -i
would be great. This command was useful for splitting a
branch into multiple pieces of work after-the-fact. However, it's not strictly
necessary, and it should be possible to emulate manually by using stash --patch
to remove selected changes.
Unlike bzr-pipeline, it does not need a "reconfigure" before you can start using it. It works automatically with any Git repo.
All new commands can also be used as Git external commands, as long as the oaf
binary can be accessed via that name prefixed with 'git-'. e.g. by running ln -s ~/.local/bin/oaf ~/.local/bin/git-merge-diff
you can then run
git merge-diff
. (This assumes that ~/.local/bin is in your path, and you have oaf installed there.)
merge
defaults tomerge --no-ff --no-commit
.--no-commit
(1.).--no-ff
is becausemerge
andpull
are distinct.pull
uses--ff-only
(5.).log
shows only commits from the current branch (and its ancestors) by default. (2.)- For a branch that has never been pushed before,
push
will automatically push toorigin
with the current branch's name. switch
allows you to pick up where you left off, without committing or explicitly stashing your pending changes. (7.) It also retains the--guess
behaviour of checkout.commit
defaults to-a
(10.). To commit only some changes, consider usingoaf stash [-p]
to temporarily remove unwanted changes. This gives you an opportunity to test that version before committing it (8.).diff
defaults to HEAD for its source (10.). It provides source and target as options (6.). It defaults to patience diff to prefer contiguous matches over longer, broken-up matches.restore
defaults to HEAD for its source (10.).status
uses a short format. When determining whether a file is modified, it (effectively) compares the working tree to HEAD (10.).
Note: if you just want the new commands, not the changed behaviour, see "New commands as Git external commands" above.
checkout
is superseded byswitch
orrestore
.
All commands not listed by oaf help
will automatically fall through to git
.
So oaf write-tree -h
is the same as git write-tree -h
.
Because oaf
falls through to git
, oaf
will also fall through to external
git commands. So git-lfs
can also be invoked as oaf lfs
. Currently, Oaf
does not have native support for extension.
Oaf is implemented using a combination of the Git CLI and libgit2. libgit2 is used by most major Git hosting platforms, so it is well-tested. Compatibility with Git should be extremely high.
The use of merge
improves mechanical interoperability, but may cause friction
with some Git users and tools. Most developers would agree that the changes
introduced on a branch are special in the context of that branch, but some do
not wish to use the first-parent mechanism to distinguish between branch
commits and merged-in commits. Because of this, they consider all merges to
hamper readability.
Since maintaining first-parent ancestry is not a priority, they may mess it up through fast-forward "merges", especially foxtrot "merges".
Note that using rebase
in place of merge
can also hamper interoperability,
so this a catch-22, but one that Git users have long accepted.
Oaf is in its early days, so binaries are provided for only x86-64.
It is written in the Rust language, so you'll need a copy of the Rust toolchain to install from source.
Before installing from source, ensure you have the OpenSSL headers installed.
For example, libssl-dev
on Ubuntu or openssl-devel
on Fedora.
The easiest way to install from source is: cargo install --locked oaf
. This
will install the latest published version.
Git must be installed for Oaf to function. Oaf is typically tested with Git 2.25.x
Oaf draws some inspiration from my previous work on
- Bazaar VCS
- the bzrtools plugins
- the bzr-pipeline plugin
- Fai, the Friendly Arch Interface
- aba, an Arch front-end I wrote in shell to add support for Git-style external commands.
While the Git repository format won out over Bazaar, many concepts from the Bazaar user model can be applied to Git. Oaf is my attempt to begin to do that. There is also Breezy, which is a fork of Bazaar with Git support built-in.