custom-git
works only with the Git for Windows executable.
Run this command in bash or zsh shells.
if command -v curl >/dev/null 2>&1; then
$SHELL -c "$(curl -fsSL https://custom-git.io/install)"
else
$SHELL -c "$(wget -qO- https://custom-git.io/install)"
fi
Run this command in bash or zsh shells:
if command -v curl >/dev/null 2>&1; then
curl -fsSL -o ~/.custom-git.try https://custom-git.io/try
source ~/.custom-git.try
else
wget -q -O ~/.custom-git.try https://custom-git.io/try
source ~/.custom-git.try
fi
Q.
Not working properly in bash shell on MacOS.
A.
Make sure ~/.bashrc file is sourced in ~/.bash_profile.
If not, add the following line at the end of ~/.bash_profile file.
source ~/.bashrc
Q.
What to do if something doesn't work?
A.
Restart your shell session and try again.
Reason: network issues may occur while fetching the try or install scripts from the website.
Q.
What to do if the issue still persists?
A.
Forward your queries to [email protected].
gadd
is a customized version of git add
command.