Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document downstream Fedora package #931

Merged
merged 2 commits into from
Sep 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 20 additions & 13 deletions readme/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
* [Community Supported Repositories](#community-supported-repositories)
* [Alpine Linux](#alpine-linux)
* [Arch Linux](#arch-linux)
* [Gnu Guix Package Manager](#gnu-guix-package-manager)
* [Fedora Linux](#fedora-linux)
* [FreeBSD](#freebsd)
* [GNU Guix Package Manager](#gnu-guix-package-manager)
* [Windows](#windows-1)

## Official Installation Methods
Expand Down Expand Up @@ -101,38 +102,44 @@ yay -S git-interactive-rebase-tool
2. Extract to a known location
3. Run `makepkg -si` from the extracted location

### GNU Guix Package Manager
### Fedora Linux

```shell
guix install git-interactive-rebase-tool
dnf install git-interactive-rebase-tool
```

#### In a temporary environment
### FreeBSD

FreeBSD support is provided by the community, and while attempts are made to ensure everything works on the platform, it is not officially supported. If you run into problems please [create an issue](https://github.com/MitMaro/git-interactive-rebase-tool/issues/new) describing the problem.

With [Ports](https://www.freebsd.org/ports/) using `pkg`

```shell
guix shell git-interactive-rebase-tool
pkg install interactive_rebase_tool
```

#### In a temporary container (Linux namespace)
#### Manual

```shell
guix shell --container git-interactive-rebase-tool
cd /usr/ports/devel/interactive_rebase_tool && make install clean
```

### FreeBSD
### GNU Guix Package Manager

FreeBSD support is provided by the community, and while attempts are made to ensure everything works on the platform, it is not officially supported. If you run into problems please [create an issue](https://github.com/MitMaro/git-interactive-rebase-tool/issues/new) describing the problem.
```shell
guix install git-interactive-rebase-tool
```

With [Ports](https://www.freebsd.org/ports/) using `pkg`
#### In a temporary environment

```shell
pkg install interactive_rebase_tool
guix shell git-interactive-rebase-tool
```

#### Manual
#### In a temporary container (Linux namespace)

```shell
cd /usr/ports/devel/interactive_rebase_tool && make install clean
guix shell --container git-interactive-rebase-tool
```

### Windows
Expand Down
Loading