Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 812 Bytes

README.md

File metadata and controls

27 lines (23 loc) · 812 Bytes

TechClub

  • Physics Simulation code for WDHS Tech Club 2017-2018
  • Here you can find the lastest and greatest source code for some elementary phyiscs simulations designed to be run in python on a raspberry pi!!

Git Command Basics

Basic Commands

  • Set Username

    • git config --global user.name "username"
  • Set Password

    • git config --global user.password
  • Set E-mail

    • git config --global user.email

Download Commands

  • git clone

    • Downloads repository as folder to current directory

Upload Commands

  • git add .

    • Add's all changed files to be commited
  • git commit -m "message"

    • Commits changes with "message" as description for GitHub
    • Use a Message!!!

  • git push

    • pushes changes to GitHub
    • Do not forget!!