# your global user acc git config --global user.name "name"git config --global user.email "test@gmail.com"# Get the user accgit config --list --show-origingit config user.namegit config user.email# Edit git config --global --edit# Unset git config --global --unset user.namegit config --global --unset user.email
Init
git config --global init.defaultBranch main # chainging the master to main git initgit submodule update --init --recursive # Update submodules git status # status of the repo