1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-27 20:59:02 +00:00

docs: "staged" git config option in docs (#271)

Have corrected the documentation for the git module. The docs now use
the correct option `staged` rather than `added`.
This commit is contained in:
Thomas O'Donnell 2019-09-02 17:44:20 +02:00 committed by Matan Kushner
parent ba225a6581
commit de4a715333

View File

@ -241,7 +241,7 @@ current directory.
| `untracked` | `"?"` | There are untracked files in the working directory. |
| `stashed` | `"$"` | A stash exists for the local repository. |
| `modified` | `"!"` | There are file modifications in the working directory. |
| `added` | `"+"` | A new file has been added to the staging area. |
| `staged` | `"+"` | A new file has been added to the staging area. |
| `renamed` | `"»"` | A renamed file has been added to the staging area. |
| `deleted` | `"✘"` | A file's deletion has been added to the staging area. |
| `disabled` | `false` | Disables the `git_status` module. |
@ -259,7 +259,7 @@ diverged = "😵"
untracked = "🤷‍"
stashed = "📦"
modified = "📝"
added = ""
staged = ""
renamed = "👅"
deleted = "🗑"
```