Chris Sevilleja
Making scotch.io. Google Dev Expert. Champion pizza maker.
Added index.html
Changed index.html
Added style.css
git config --global user.name "Chris Sevilleja"
git config --global user.email "chris@scotch.io"
git config --global user.name "Chris Sevilleja"
git config --global user.email "chris@scotch.io"
git init
Working Files
Staging Area
Final Commit
git status
# add all
git add <filename>
# add all
git add -A
git log
Your Computer
Private Key
Server
Public Key
ssh-keygen -t rsa -C "chris@scotch.io"
Master Branch
New Feature Branch
Merge
git branch
git branch my-branch
git checkout my-branch
git branch -d my-branch
git merge my-branch
When git can't automatically merge two branches.
Easy to fix.
By Chris Sevilleja