From ce37ff229c75a9a5a7ea41a6a752228865ba83bf Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Tue, 27 Aug 2024 21:02:37 -0700 Subject: [PATCH 1/2] Minor cleanups to community-supported repo docs Capitalize GNU and alphabetize the distro list. --- readme/install.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/readme/install.md b/readme/install.md index a7928af7e..08bd3590a 100644 --- a/readme/install.md +++ b/readme/install.md @@ -12,8 +12,8 @@ * [Community Supported Repositories](#community-supported-repositories) * [Alpine Linux](#alpine-linux) * [Arch Linux](#arch-linux) - * [Gnu Guix Package Manager](#gnu-guix-package-manager) * [FreeBSD](#freebsd) + * [GNU Guix Package Manager](#gnu-guix-package-manager) * [Windows](#windows-1) ## Official Installation Methods @@ -101,38 +101,38 @@ yay -S git-interactive-rebase-tool 2. Extract to a known location 3. Run `makepkg -si` from the extracted location -### GNU Guix Package Manager +### FreeBSD -```shell -guix install git-interactive-rebase-tool -``` +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. -#### In a temporary environment +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 From d253bf2020bdc07969bfdbb92779c02d5f269736 Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Mon, 1 Jul 2024 18:36:05 -0500 Subject: [PATCH 2/2] Document downstream Fedora package --- readme/install.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/readme/install.md b/readme/install.md index 08bd3590a..d533e98e2 100644 --- a/readme/install.md +++ b/readme/install.md @@ -12,6 +12,7 @@ * [Community Supported Repositories](#community-supported-repositories) * [Alpine Linux](#alpine-linux) * [Arch Linux](#arch-linux) + * [Fedora Linux](#fedora-linux) * [FreeBSD](#freebsd) * [GNU Guix Package Manager](#gnu-guix-package-manager) * [Windows](#windows-1) @@ -101,6 +102,12 @@ yay -S git-interactive-rebase-tool 2. Extract to a known location 3. Run `makepkg -si` from the extracted location +### Fedora Linux + +```shell +dnf install git-interactive-rebase-tool +``` + ### 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.