fast – Teach you the basic of GITHUB. – Faster and let you clear on it. – Any one can learn, simple and fast. • Won’t – Teach you too advance /complicated command . – Teach every function on GITHUB
GitHub Utility Window/Linux/MAC Install Package Linux(Ubuntu, Debian) #sudo apt-get install gitcore Mac #brew install git Window https://desktop.github.com GIT download all platform https://git- scm.com/download/ Add/Delete file Create /Delete Folder You should know how to use
repository into local disk – Create a directory(recommend) – ~/#mkdir /GITHUB – # cd /GITHUB – git clone http//github.com/xxxxx/ooooo Xxxusername 000000prokject name – Example: • git clone https://github.com/chenchih/test2016 • Create file on local disk – # cd /GITHUB/test2016 – #touch example2016.txt
local) • # cd /GITHUB/test2016 • #touch example2016.txt – Must be the same as local – (add file to git server) • git add 'files • #git add ‘example.txt’ – Committed and upload (write description of your file) – #git commit -am “description of file“ (Upload to server) – #Git push 2)Upload file from local to server
password of git? #git config --global user.name “chenchih" #git config --global user.email [email protected] • See your config after you add – #git config –list