Skip to content
This repository was archived by the owner on Jul 31, 2022. It is now read-only.

Github Resources

Dylan Christopherson edited this page Jun 11, 2018 · 11 revisions

Download the E-book from the left side of the page:

https://git-scm.com/book/en/v2

A google slides power point:

https://docs.google.com/presentation/d/1lr-HGI_YGprGQ5FHvaaTrN5oMY-Sfq4yWpWTOq1WSO4/edit#slide=id.p

An interesting youtube tutorial. Explains basic concepts extremely well:

https://www.youtube.com/watch?v=BCQHnlnPusY

Github Learning:

git config --global user.name "username"
git config --global user.email [email protected]
git config --list

git init               //Create a directory, cd into the directory and run this command
rm -rf .git            //Revereses the git init command
git clone "web_link.git"

git log <optional>     //You can use -2 at optional to show the last two commits
git remote
git remote -v
git status

git commit -a -m "Message"
git push origin master
Clone this wiki locally