Github - 5huckle/OFFICIALTECHJOURNAL GitHub Wiki

Git

What is it for?

Git is a (I believe) terminal based program that allows you to upload, download, and edit code on github from your terminal without having to use github. This makes it easy to upload files to github by simply creating the structure that you would want on your github with directories in the terminal, cloning the repo, and working within these directories to be able to upload them.

How to use Git

This is a guide by Github themselves.

  1. Clone Repository

git clone https://github.com/5huckle/OFFICIALTECHJOURNAL.git

  1. Initialize the repo

git init

  1. Make sure that whatever files you want uploaded are structured properly and in the correct place

  2. git add .

  3. git commit -m "message with upload"