Git
Personal git configuration.
You can install this script by running the following command in your terminal.
curl -sL https://setup.mraddict.vercel.app/api/script/git | bash
Below is the raw script content, which you can also get from the command above from the api https://setup.mraddict.vercel.app/api/script/git.
#! /bin/bash
# 1. Install git
if ! command -v git &>/dev/null ; then
echo "[INFO] Installing git..."
sudo apt-get install git -y &>/dev/null
else
echo "[WARN] You have already installed git!"
fi
# 2. Config git
echo "[INFO] Configurating git..."
git config --global user.name Cael
git config --global user.email MR-Addict@qq.com
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
git config --global init.defaultBranch main