https://slides.com/alidejong/git-basics
Senior, ECE
Innovation Team
alioup
Sophomore, CS
Innovation Team
jaflo
$ brew install git
OR
http://git-scm.com/download/mac
$ git config --global user.name "username"
$ git config --global user.email "me@utexas.edu"
http://git-scm.com/download/win
$ sudo apt-get install git-all
$ git config --global user.name "username"
$ git config --global user.email "me@utexas.edu"
$ git clone https://github.com/alioup/workshop.git
name: username.txt
content: Hello my name is Ali and my favorite emoji is 💃
$ git status
$ git add username.txt
$ git status
$ git pull
$git push
$ git log
OR
$ git reset COMMIT HASH --hard