From b7d9be9af9cde1fafea662b5a929ef9281d22cda Mon Sep 17 00:00:00 2001 From: Navneet Singh Date: Sat, 18 Nov 2017 20:33:11 +0530 Subject: [PATCH] stash content with a custom message (#138) Added command which can be used to stash code marked with a custom message --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) 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