An open API service indexing awesome lists of open source software.

https://github.com/matrixai/git-common-descendant

Finding common descendants of 2 commits https://matrix.ai
https://github.com/matrixai/git-common-descendant

Last synced: 3 months ago
JSON representation

Finding common descendants of 2 commits https://matrix.ai

Awesome Lists containing this project

README

          

# git-common-descendants

Given 2 commits, this command will find the earliest common descendant.

## Installation

Building the package:

```sh
nix-build -E '(import ./pkgs.nix).callPackage ./default.nix {}'
```

Building the releases:

```sh
nix-build ./release.nix --attr application
```

Install into Nix user profile:

```sh
nix-env -f ./release.nix --install --attr application
```

## Development

```sh
# development environment
nix-shell
# clean the build
link="$(readlink ./result)" \
&& rm ./result \
&& nix-store --delete "$link"
```