Page cover

git

This page will have all the things related to git.

git --version

# Configure Git
git config --global user.name "Name"
git config --global user.email "[email protected]"

# if we want to use separate name and mail; initiate a git and then setup new username and mail using the following
git config user.name "Name"
git config user.email "[email protected]"

Git Repository Setup

Git Commit

Connecting to Github

Github SSH Key Setup

Last updated