[PATCH 1/2] stash--helper: implement "git stash--helper"

2016-01-28 Thread Matthias Asshauer
From: Matthias Aßhauer This patch implements a new "git stash--helper" builtin plumbing command that will be used to migrate "git-stash.sh" to C. We start by implementing only the "--non-patch" option that will handle the core part of the non-patch stashing. Signed-off-by: Matthias Aßhauer ---

[PATCH 2/2] stash: use "stash--helper"

2016-01-28 Thread Matthias Asshauer
From: Matthias Aßhauer Use the new "git stash--helper" builtin. It should be faster than the old shell code and is a first step to move more shell code to C. Signed-off-by: Matthias Aßhauer --- git-stash.sh | 10 +- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/git-stas