From c56b303b2983e313261db6e89891058fa63739ac Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sun, 16 Dec 2018 17:55:37 +1100 Subject: add pre-hook to test credentials panel --- test/hooks/pre-push | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 test/hooks/pre-push (limited to 'test') diff --git a/test/hooks/pre-push b/test/hooks/pre-push new file mode 100644 index 000000000..156b9664c --- /dev/null +++ b/test/hooks/pre-push @@ -0,0 +1,22 @@ +#!/bin/bash + +# test pre-push hook for testing the lazygit credentials view +# +# to enable, use: +# chmod +x .git/hooks/pre-push +# +# this will hang if you're using git from the command line, so only enable this +# when you are testing the credentials view in lazygit + +exec < /dev/tty + +echo -n "Username for 'github': " +read username + +echo -n "Password for 'github': " +read password + +# echo "failed" +# exit 1 + +exit 0 \ No newline at end of file -- cgit v1.2.3