You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
local working directory (where you work on your files) --> staging area (where your commits are saved) --> local git repository --> github (the github website)
"git add" moves a file to staging
"git commit" moves a file to local git repository
"git push" moves a file to github
git diff # will tell you what's different between local repository and staging area
fork to get your own copy of someone else's repository