Difference between revisions of "Github"
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
* Identify a folder project | * Identify a folder project | ||
** CD into Project Directory | ** CD into Project Directory | ||
* In the git Terminal enter | |||
git init | |||
=== Add files to the Staging Environment === | |||
git add . | |||
git status // will give you the status |
Revision as of 20:22, 9 August 2016
Install Git on A Mac
http://git-scm.com Download and Install, then go to terminal and type
git --version
Install Git on Windows
Same as mac, but you have to use the git terminal
Getting Started with a Git Project
- Identify a folder project
- CD into Project Directory
- In the git Terminal enter
git init
Add files to the Staging Environment
git add . git status // will give you the status