summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/hooks/pre-push25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/hooks/pre-push b/test/hooks/pre-push
new file mode 100644
index 000000000..b7cb2e87b
--- /dev/null
+++ b/test/hooks/pre-push
@@ -0,0 +1,25 @@
+#!/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
+
+if [ "$username" = "username" -a "$password" = "password" ]; then
+ echo "success"
+ exit 0
+fi
+
+>&2 echo "incorrect username/password"
+exit 1