bin/setup-hg-git@68baaab84a0c
bin/setup-hg-git
Mon, 13 Dec 2021 13:02:46 -0600
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Mon, 13 Dec 2021 13:02:46 -0600
- changeset 961
- 68baaab84a0c
- parent 892
-
ede01ab376a7
- child 985
-
349ea9f736b9
- permissions
- -rwxr-xr-x
Make git-histedit an alias. can use --keep-base after 2.24
#!/bin/bash
set -eu -o pipefail
if ! (command -v pip3 && pip3 -V) &>/dev/null; then
curl -fsSL --compressed https://bootstrap.pypa.io/get-pip.py |
python3 - --user
fi
pip3 install --user --upgrade hg-git
if ! grep -qsw hggit ~/.hgext/hgrc; then
printf '[extensions]\nhggit =\n' >> ~/.hgext/hgrc
fi