Downloading Git for Command Line
- https://git-scm.com
- "Downloads" section of the web page, and then download for your computer's operating system
- A) After download is complete, install git.
- B) On Select Components, check "Windows Explorer Integration", "Git Bash Here", "Git GUI Here", "Associate .git* config...", and "Associate .sh files..."
- C) Important Select: "Use Git and optional Unix tools from the Windows Command Prompt"
- D) Select: "Checkout Windows-style, commit Unix-style line endings"
- E) Select: "Use Windows' default console window"
-
Retrieve Github Repo
-
- git clone https://github.com/Brdjx/CNRobotics.git
-
Add all changes to Local Git Repo
-
- git add .
-
Create a git commitment
-
- git commit -m "Your message here!"
-
Push all code to the repository on github
-
- git push -u origin master