bin/setup-hg-git@a5b3b7b6850c
bin/setup-hg-git
Mon, 10 Aug 2020 17:51:44 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Mon, 10 Aug 2020 17:51:44 -0500
- changeset 881
- a5b3b7b6850c
- parent 839
-
0beae3c33263
- child 892
-
ede01ab376a7
- permissions
- -rwxr-xr-x
mergetool fixes
#!/bin/bash
set -eu -o pipefail
if ! (command -v pip2 && pip2 -V) &>/dev/null; then
curl -fsSL --compressed https://bootstrap.pypa.io/get-pip.py |
python2 - --user
fi
pip2 install --user --upgrade hg-git
if ! grep -qsw hggit ~/.hgext/hgrc; then
printf '[extensions]\nhggit =\n' >> ~/.hgext/hgrc
fi