mirror of
https://github.com/namibia/tips.git
synced 2025-01-03 14:17:28 +00:00
git stash save -u which i started using
This commit is contained in:
parent
5566a52dc4
commit
a2319d7090
22
README.md
22
README.md
@ -20,7 +20,7 @@
|
|||||||
* [Delete remote branch](https://github.com/git-tips/tips#delete-remote-branch)
|
* [Delete remote branch](https://github.com/git-tips/tips#delete-remote-branch)
|
||||||
* [Undo local changes with the last content in head](https://github.com/git-tips/tips#undo-local-changes-with-the-last-content-in-head)
|
* [Undo local changes with the last content in head](https://github.com/git-tips/tips#undo-local-changes-with-the-last-content-in-head)
|
||||||
* [Revert: Undo a commit by creating a new commit](https://github.com/git-tips/tips#revert-undo-a-commit-by-creating-a-new-commit)
|
* [Revert: Undo a commit by creating a new commit](https://github.com/git-tips/tips#revert-undo-a-commit-by-creating-a-new-commit)
|
||||||
* [Resert: Discard commits, advised for private branch](https://github.com/git-tips/tips#resert-discard-commits-advised-for-private-branch)
|
* [Reset: Discard commits, advised for private branch](https://github.com/git-tips/tips#reset-discard-commits-advised-for-private-branch)
|
||||||
* [Reword the previous commit message](https://github.com/git-tips/tips#reword-the-previous-commit-message)
|
* [Reword the previous commit message](https://github.com/git-tips/tips#reword-the-previous-commit-message)
|
||||||
* [Changing a remote's URL](https://github.com/git-tips/tips#changing-a-remotes-url)
|
* [Changing a remote's URL](https://github.com/git-tips/tips#changing-a-remotes-url)
|
||||||
* [Get list of all remote references](https://github.com/git-tips/tips#get-list-of-all-remote-references)
|
* [Get list of all remote references](https://github.com/git-tips/tips#get-list-of-all-remote-references)
|
||||||
@ -34,6 +34,7 @@
|
|||||||
* [Find out branches containing commit-hash](https://github.com/git-tips/tips#find-out-branches-containing-commit-hash)
|
* [Find out branches containing commit-hash](https://github.com/git-tips/tips#find-out-branches-containing-commit-hash)
|
||||||
* [Git Aliases](https://github.com/git-tips/tips#git-aliases)
|
* [Git Aliases](https://github.com/git-tips/tips#git-aliases)
|
||||||
* [Saving current state of tracked files without commiting](https://github.com/git-tips/tips#saving-current-state-of-tracked-files-without-commiting)
|
* [Saving current state of tracked files without commiting](https://github.com/git-tips/tips#saving-current-state-of-tracked-files-without-commiting)
|
||||||
|
* [Saving current state including untracked files](https://github.com/git-tips/tips#saving-current-state-including-untracked-files)
|
||||||
* [Show list of all saved stashes](https://github.com/git-tips/tips#show-list-of-all-saved-stashes)
|
* [Show list of all saved stashes](https://github.com/git-tips/tips#show-list-of-all-saved-stashes)
|
||||||
* [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)
|
||||||
@ -141,7 +142,7 @@ git checkout -- <file_name>
|
|||||||
git revert <commit-ish>
|
git revert <commit-ish>
|
||||||
```
|
```
|
||||||
|
|
||||||
## Resert: Discard commits, advised for private branch
|
## Reset: Discard commits, advised for private branch
|
||||||
```sh
|
```sh
|
||||||
git reset <commit-ish>
|
git reset <commit-ish>
|
||||||
```
|
```
|
||||||
@ -224,6 +225,23 @@ git config --global alias.st status
|
|||||||
git stash
|
git stash
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
__Alternatives:__
|
||||||
|
```sh
|
||||||
|
git stash save
|
||||||
|
```
|
||||||
|
|
||||||
|
## Saving current state including untracked files
|
||||||
|
```sh
|
||||||
|
git stash save -u
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
__Alternatives:__
|
||||||
|
```sh
|
||||||
|
git stash save --include-untracked
|
||||||
|
```
|
||||||
|
|
||||||
## Show list of all saved stashes
|
## Show list of all saved stashes
|
||||||
```sh
|
```sh
|
||||||
git stash list
|
git stash list
|
||||||
|
10
tips.json
10
tips.json
@ -69,7 +69,7 @@
|
|||||||
"tip":"git revert <commit-ish>"
|
"tip":"git revert <commit-ish>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title":"Resert: Discard commits, advised for private branch",
|
"title":"Reset: Discard commits, advised for private branch",
|
||||||
"tip":"git reset <commit-ish>"
|
"tip":"git reset <commit-ish>"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -124,7 +124,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title":"Saving current state of tracked files without commiting",
|
"title":"Saving current state of tracked files without commiting",
|
||||||
"tip": "git stash"
|
"tip": "git stash",
|
||||||
|
"alternatives": ["git stash save"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title":"Saving current state including untracked files",
|
||||||
|
"tip": "git stash save -u",
|
||||||
|
"alternatives": ["git stash save --include-untracked"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title":"Show list of all saved stashes",
|
"title":"Show list of all saved stashes",
|
||||||
|
Loading…
Reference in New Issue
Block a user