Git in the Command Line
Setup
git --versionsudo yum install git sudo yum update gitsudo apt-get install git sudo apt-get update git/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" brew install git brew upgrade git
git config --global user.name "your_username" git config --global user.email "your_email_address@example.com"git clone git@gitlab.com:username/example-project.git
Checkout
Edit
Add
Commit
Push
Merge
Last updated
