Brian McColgan
a4cc118fff
Update install_linux.md
...
Added missing directive (bash) to ensure dnf has config-manager command correctly loaded, prior to adding a repo. Usually missing e.g., in a Docker container.
2022-04-05 14:23:29 -04:00
Mislav Marohnić
25a4877f2e
Update triage.md ( #5238 )
2022-02-28 09:31:27 +01:00
Hanjingxue Boling
f4b4a4e18f
Update installation instructions for Fedora ( #5204 )
...
gh-cli has entered fedora's official repository and can be installed directly without adding a third-party repository.
Co-authored-by: Mislav Marohnić <mislav@github.com>
2022-02-17 18:41:26 +00:00
nate smith
32dada90ba
revert PR 4998
2022-02-14 10:35:09 -06:00
Malte Gejr
5fe7ee3f86
Added install instructions for Void Linux
...
The package is added to the unofficial/community maintained list.
2022-01-30 14:53:26 +01:00
Nate Smith
13b3c7c1a4
Merge pull request #4998 from SubOptimal/patch-1
...
Amend location of GPG key file
2022-01-25 14:09:57 -06:00
nate smith
e51a4b5562
that did not work
2022-01-25 13:50:11 -06:00
nate smith
f2e76bea5d
minor wording, arrangement
2022-01-25 13:49:38 -06:00
Frank Dietrich
0ac546a81f
Amend location of GPG key file
...
Following the Debian [documentation](https://wiki.debian.org/SecureApt ) the keyring should be stored in `/etc/apt/trusted.gpg.d/.
> In more recent Debian GNU/Linux versions (Wheezy, for example), the keyrings are stored in specific files all located in the `/etc/apt/trusted.gpg.d` directory.
2022-01-06 09:16:27 +01:00
Andrei Jiroh Eugenio Halili
354bac82b3
Add Alpine Linux install docs
2021-12-24 18:43:22 +08:00
Benny Siegert
0aaa334edf
Add installation instructions for NetBSD/pkgsrc ( #4931 )
...
Co-authored-by: Mislav Marohnić <mislav@github.com>
2021-12-20 10:00:57 +00:00
Tobias Gruetzmacher
96fe761648
Don't use gpg in Debian instruction
...
It's not really necessary, since apt can work with the keyring file
hosted on cli.github.com.
2021-10-25 20:50:11 +02:00
dimas
0007dce7f7
fixing numbering in project-layout and source docs for consistency.
2021-10-22 01:29:53 +07:00
dimas
e9dafd7c32
fixing numbering in releasing docs for consistency.
2021-10-22 01:25:23 +07:00
Mislav Marohnić
1464a8a0f3
Generate release notes using the new API
...
https://docs.github.com/en/rest/reference/repos#generate-release-notes-content-for-a-release
2021-10-14 20:22:38 +02:00
Andrew Hsu
7519421fc0
fix link to code in project-layout doc
...
Update link to code so it matches given example in doc: `gh help issue
list`.
2021-09-09 10:24:42 -05:00
Mislav Marohnić
eb78ac0dcb
Require Go 1.16+
2021-08-23 18:08:09 +02:00
SaintMalik
75dc51084b
fix typos in docs
2021-08-22 08:25:15 +01:00
Mislav Marohnić
810c42120a
Add installation note about Raspberry Pi OS
2021-08-17 12:16:59 +02:00
Mislav Marohnić
0366e047e2
Cleanup Linux installation docs
2021-08-17 11:47:37 +02:00
Mislav Marohnić
1ec632b1b8
Add OpenBSD instructions
2021-08-17 11:47:21 +02:00
Mislav Marohnić
ca60e30171
Add warning about Snap
2021-08-17 11:46:25 +02:00
Tobias Nießen
515902ade3
Fix typo in openSUSE installation instructions
2021-07-27 02:13:35 +02:00
Bruno Alla
d396674e12
Fix a typo in the docs
2021-06-02 15:53:03 +01:00
vilmibm
3e21da9167
just use stable
2021-05-20 11:44:50 -05:00
vilmibm
320ab8ad31
restore header, use an emoji
2021-05-19 16:20:01 -05:00
vilmibm
6c5b690bbe
simplify deb installation docs
2021-05-19 12:13:29 -05:00
Mislav Marohnić
02b7a71783
Add project layout documentation ( #3587 )
2021-05-11 21:21:57 +02:00
Nate Smith
5821065ac0
Merge pull request #3419 from zxaos/patch-1
...
add Debian install variant without add-apt-repository
2021-04-20 12:13:59 -05:00
Nate Smith
f65af1473e
Merge pull request #3438 from invakid404/trunk
...
Add Funtoo Linux install instructions
2021-04-20 11:54:00 -05:00
Nate Smith
929b584003
Update docs/install_linux.md
2021-04-20 11:47:22 -05:00
Nate Smith
2872e79a4f
Update docs/install_linux.md
2021-04-20 11:47:17 -05:00
Abhay Kumar Verma
d479449ec5
linuxbrew details added
2021-04-19 19:58:37 +05:30
invakid404
388075d55a
docs: add funtoo linux install instructions
2021-04-16 11:36:33 +03:00
Matt Bond
f4eb60d7a8
add Debian install variant without add-apt-repository
2021-04-14 00:13:50 -04:00
Mislav Marohnić
d43720620e
Tweak build scripts to enable cross-compiling
...
The main build script for this project is `script/build.go` which
implements Makefile-like building of the `gh` binary and associated man
pages. Our Makefile defers to the Go script.
However, when setting GOOS, GOARCH, and other environment variables to
modify the target for the resulting binary, these environment variables
would affect the execution of `build.go` as well, which was unintended.
This tweaks our Makefile to reset variables like GOOS and GOARCH when
building the `build.go` script itself, ensuring that the built script
runs on the same platform, and adds the ability to pass environment
variables as arguments to `go run script/build.go`. This allows the
following usage on platforms without `make`:
go run script/build.go GOOS=linux
With this style of invocation, the GOOS setting does not actually affect
`go run` itself; just the `go build` that is executed in a child process.
2021-04-09 15:48:12 +02:00
Mislav Marohnić
331bf50076
Tweak language
2021-03-02 15:05:16 +01:00
fossdd
14c4743f8c
Fix markdown link
...
Co-authored-by: Nate Smith <vilmibm@github.com>
2021-03-01 19:01:18 +00:00
fossdd
a6e9940b81
Add information about AUR
...
The AUR is a community-based location for PKGBUILDs, Arch's Install scripts.
There is a unofficial PKGBUILD for building and installing `gh` from the git repo.
https://aur.archlinux.org/packages/github-cli-git
2021-02-28 12:54:19 +00:00
Mislav Marohnić
39431a101d
Port select portions of Makefile to script/build.go
...
This is to enable build tasks on Windows.
2021-01-08 22:35:57 +01:00
Mislav Marohnić
5e97775978
Clarify building from source on Windows
...
Address https://github.com/cli/cli/issues/2545#issuecomment-751842548
2021-01-06 18:08:02 +01:00
Mislav Marohnić
cba15d0109
Clarify openSUSE Tumbleweed instructions
2020-12-15 15:16:33 +01:00
Emily Roberts
b8522f683c
Add openSUSE distro package install instructions
...
Added the instructions to install the GitHub CLI from the openSUSE distribution repositories
2020-12-15 01:17:44 -07:00
Guangyuan Yang
1fb542250a
Document installation instructions for FreeBSD
2020-12-14 13:51:36 +08:00
Mislav Marohnić
faa1e44f52
Merge pull request #2455 from ismaell/install-target
...
Add make (un)install targets for POSIX systems
Fixes #293
2020-12-01 20:33:37 +01:00
Mislav Marohnić
6f689ff051
Document make install
2020-12-01 20:31:20 +01:00
Shubhankar Kanchan Gupta
9f84f0ffa1
Warn termux users with older Android versions ( #2467 )
...
Co-authored-by: Mislav Marohnić <mislav@github.com>
2020-11-24 12:56:26 +01:00
Zoltan Puskas
3c3ce909a1
Add Gentoo instructions to install the package ( #2389 )
...
Co-authored-by: Mislav Marohnić <mislav@github.com>
2020-11-11 12:39:22 +01:00
Nate Smith
6ef7d5e842
Update install_linux.md
2020-11-02 18:15:32 -06:00
Christopher Rucinski
e4705395e3
added extra notes
2020-10-30 01:28:31 +09:00