Git & GitHub
Git & GitHub
1.) INSTALLATION
Set a name that is identifiable for credit when review version history
git config --global user.name “your github username”
set an email address that will be associated with each history marker
git config --global user.email “your github gmail”
git status
List which files are staged, unstaged, and untracked.
git init
Create empty Git repo in specified directory(folder)
4.) HOW UPLOAD FOLDER TO GITHUB
Add to gitHub
git push
Fetch and merge any commits from the tracking remote branch
git pull