summaryrefslogtreecommitdiffstats
path: root/test/hooks/pre-push
blob: 156b9664c2ef5274dd7c12742024b61f61dccda5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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