Prerequisites: 4 a GitHub.com account 4 Please log in. 4 git installed locally 4 In your terminal program, typing git version should return a number. @nnja
What makes a folder a "git repository?" Only one thing -- the existence of a .git directory. Once this directory is present, you'll be able to run the git status command. @nnja
Stash 4 A stash is a safe place to temporarily store your changes 4 Only stash files git knows about: 4 git stash 4 Include files git doesn't know about: 4 git stash --include-untracked 4 Bring your changes back 4 git stash apply @nnja