Procházet zdrojové kódy

Merge pull request #272 from PThorpe92/main

Assorted docs: --git-repos & --git-repos-no-status and add gpg armor for .deb pkg
Christina Sørensen před 2 roky
rodič
revize
70c1abc4f4
2 změnil soubory, kde provedl 7 přidání a 1 odebrání
  1. 1 1
      README.md
  2. 6 0
      man/eza.1.md

+ 1 - 1
README.md

@@ -100,7 +100,7 @@ key is in this repo under [deb.asc](/deb.asc).
 
 To install eza from this repo use:
 ```bash
-wget -qO- https://raw.githubusercontent.com/eza-community/eza/main/deb.asc | sudo tee /etc/apt/trusted.gpg.d/gierens.asc
+wget -qO- https://raw.githubusercontent.com/eza-community/eza/main/deb.asc | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/gierens.asc
 echo "deb http://deb.gierens.de stable main" | sudo tee /etc/apt/sources.list.d/gierens.list
 sudo apt update
 sudo apt install -y eza

+ 6 - 0
man/eza.1.md

@@ -198,6 +198,12 @@ These options are available when running with `--long` (`-l`):
 `--git`  [if eza was built with git support]
 : List each file’s Git status, if tracked.
 
+`--git-repos` [if eza was built with git support]
+: List each directory’s Git status, if tracked.
+
+`--git-repos-no-status` [if eza was built with git support]
+: List if a directory is a Git repository, but not its status.
+
 This adds a two-character column indicating the staged and unstaged statuses respectively. The status character can be ‘`-`’ for not modified, ‘`M`’ for a modified file, ‘`N`’ for a new file, ‘`D`’ for deleted, ‘`R`’ for renamed, ‘`T`’ for type-change, ‘`I`’ for ignored, and ‘`U`’ for conflicted.
 
 Directories will be shown to have the status of their contents, which is how ‘deleted’ is possible: if a directory contains a file that has a certain status, it will be shown to have that status.