uknowngithubuser
10/20/2018 - 4:48 PM

Git Setup #ubuntu #shell

Git Setup #ubuntu #shell

# Git

echo "Setting up Git"

# Prerequisities
sudo apt install -y curl

# Installing Git
sudo apt install -y git
sudo apt-get install -y git-core

# Check that installation is complete
git --version

# Configuring account
git config --global user.name "georgioszachariadis"
git config --global user.email "onlineservices@georgioszachariadis.com"
cat ~/.gitconfig
git config --list

echo "Git Setup Completed"