mirror of
https://github.com/namibia/tips.git
synced 2024-12-23 02:28:58 +00:00
commit
b76f3c9e53
12
README.md
12
README.md
@ -34,6 +34,8 @@
|
|||||||
* [Apply any stash without deleting from the stashed list](https://github.com/git-tips/tips#apply-any-stash-without-deleting-from-the-stashed-list)
|
* [Apply any stash without deleting from the stashed list](https://github.com/git-tips/tips#apply-any-stash-without-deleting-from-the-stashed-list)
|
||||||
* [Apply last stashed state and delete it from stashed list](https://github.com/git-tips/tips#apply-last-stashed-state-and-delete-it-from-stashed-list)
|
* [Apply last stashed state and delete it from stashed list](https://github.com/git-tips/tips#apply-last-stashed-state-and-delete-it-from-stashed-list)
|
||||||
* [Delete all stored stashes](https://github.com/git-tips/tips#delete-all-stored-stashes)
|
* [Delete all stored stashes](https://github.com/git-tips/tips#delete-all-stored-stashes)
|
||||||
|
* [Show all tracked files](https://github.com/git-tips/tips#show-all-tracked-files)
|
||||||
|
* [Show all untracked files](https://github.com/git-tips/tips#show-all-untracked-files)
|
||||||
|
|
||||||
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
|
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
|
||||||
<!-- @doxie.inject end toc -->
|
<!-- @doxie.inject end toc -->
|
||||||
@ -221,5 +223,15 @@ __Alternatives:__
|
|||||||
git stash drop <stash@{n}>
|
git stash drop <stash@{n}>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Show all tracked files
|
||||||
|
```sh
|
||||||
|
git ls-files -t
|
||||||
|
```
|
||||||
|
|
||||||
|
## Show all untracked files
|
||||||
|
```sh
|
||||||
|
git ls-files --others
|
||||||
|
```
|
||||||
|
|
||||||
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
|
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
|
||||||
<!-- @doxie.inject end -->
|
<!-- @doxie.inject end -->
|
||||||
|
@ -126,5 +126,13 @@
|
|||||||
"title": "Delete all stored stashes",
|
"title": "Delete all stored stashes",
|
||||||
"tip": "git stash clear",
|
"tip": "git stash clear",
|
||||||
"alternatives": ["git stash drop <stash@{n}>"]
|
"alternatives": ["git stash drop <stash@{n}>"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title":"Show all tracked files",
|
||||||
|
"tip":"git ls-files -t"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title":"Show all untracked files",
|
||||||
|
"tip":"git ls-files --others"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user