From 82fbb92ea0b5042841b868230ad0ae5afe575abc Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Thu, 14 Jan 2021 02:44:24 -0800 Subject: [PATCH] Move git_push_all to its own file. --- cmd_autoexec.bat | 2 +- git_push_all.bat | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 git_push_all.bat diff --git a/cmd_autoexec.bat b/cmd_autoexec.bat index c6f58e2..979395b 100644 --- a/cmd_autoexec.bat +++ b/cmd_autoexec.bat @@ -11,4 +11,4 @@ doskey ...=start. doskey \=cd\ doskey gc=gitcheckup $* doskey gp=git push $* -doskey gpa=git remote ^| eval !i "f'git push {x} master $*'" ^| do_cmd +doskey gpa=git_push_all $* diff --git a/git_push_all.bat b/git_push_all.bat new file mode 100644 index 0000000..022e08b --- /dev/null +++ b/git_push_all.bat @@ -0,0 +1 @@ +git remote | eval !i "f'git push {x} master %*'" | do_cmd