diff --git a/README.md b/README.md index 0fe7e93..18ce62f 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,7 @@ For clarity's sake all examples in this document use a customized bash prompt in - [Delete tag](#delete-tag) - [Recover a deleted tag](#recover-a-deleted-tag) - [Deleted Patch](#deleted-patch) + - [Stash with message](#stash-msg) - [Tracking Files](#tracking-files) - [I want to change a file name's capitalization, without changing the contents of the file.](#i-want-to-change-a-file-names-capitalization-without-changing-the-contents-of-the-file) - [I want to remove a file from git but keep the file](#i-want-to-remove-a-file-from-git-but-keep-the-file) @@ -924,6 +925,13 @@ From github.com:foo/bar * [new ref] refs/pull/1/head -> pr_1 ``` + +### Stash with message + +```sh +$ git stash save +``` + ## Tracking Files