cli/docs
Stefan Heimersheim e062330163
Fix inconsistent use of tabs and spaces
The code below used spaces to indent two of the lines, and tabs for the other 6 lines. This makes indenting inconsistent in settings where tabs are not rendered as 8 spaces. I've replaced the spaces with tabs.

```
(type -p wget >/dev/null || (sudo apt update && sudo apt-get install wget -y)) \
	&& sudo mkdir -p -m 755 /etc/apt/keyrings \
        && out=$(mktemp) && wget -nv -O$out https://cli.github.com/packages/githubcli-archive-keyring.gpg \
        && cat $out | sudo tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \
	&& sudo chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \
	&& sudo mkdir -p -m 755 /etc/apt/sources.list.d \
	&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
	&& sudo apt update \
	&& sudo apt install gh -y
```
2025-07-01 11:43:04 +01:00
..
codespaces.md Creating doc to capture Codespace usage guidance 2024-05-09 08:27:58 -04:00
command-line-syntax.md Fix typos 2020-10-04 22:16:30 +03:00
gh-vs-hub.md Update comparison with hub as of 1.0 2020-09-17 06:56:48 -06:00
install_linux.md Fix inconsistent use of tabs and spaces 2025-07-01 11:43:04 +01:00
license-compliance.md Use make for license generation and checks 2025-06-20 16:53:11 -04:00
multiple-accounts.md grammar: avoid e.g.+etc. together 2024-03-18 11:21:25 -04:00
project-layout.md fixing numbering in project-layout and source docs for consistency. 2021-10-22 01:29:53 +07:00
README.md Add README to docs folder 2020-03-10 13:22:39 -06:00
release-process-deep-dive.md ./script/sign cleanup 2025-03-14 11:51:09 +05:00
releasing.md Deep Dive Document Release Process (#10503) 2025-03-04 13:30:29 +01:00
source.md Update missed Go 1.23 references 2025-06-23 09:58:06 -04:00
triage.md PR review edits 2025-01-07 15:42:17 -08:00
working-with-us.md Use new GitHub preview terms in working-with-us.md 2024-10-22 10:56:39 -06:00

This folder is used for documentation related to developing gh. Docs for gh installation and usage are available at https://cli.github.com/manual.