Installing Git in Ubuntu
To install git, run:
After installing git, you may setup the following configuration:
sudo apt-get install git
After installing git, you may setup the following configuration:
git config --global user.name "Your Github Name"
git config --global user.email "email@example.com"
git config --global color.ui true
Comments
Post a Comment