Skip to content

Latest commit

 

History

History
47 lines (26 loc) · 2.05 KB

README.md

File metadata and controls

47 lines (26 loc) · 2.05 KB

Setup instructions for tutorials

This repository contains setup instructions for tutorials that I give. Each folder contains information related to a tutorial.

Git and GitHub

If you have not set up git and GitHub yet, please follow the following guides:

A small cheatsheet for git: link.

Typical workflows

Create an issue

Please feel free to open an issue if you think something is wrong or could be improved! To that end, go to the Issues section of this repository.

Fork and create a pull request

(Extensive guide)

A fork is a copy (that you own) of a repository (that you do not own). To fork a this repostory, click on Fork in the top-right corner of the page.

Create a local clone of your fork on your computer by running the following command in your terminal (replace YOUR-USERNAME with your GitHub login):

git clone https://github.com/YOUR-USERNAME/tutorial-setup

Create a branch called mybranch using git checkout -b mybranch (you can obviously change the branch name).

Make any change you want, then commit and push them on your branch.

To create a pull request, return the original repository page (https://github.com/deepcharles/tutorial-setup) and above the list of files, click on Pull request.

Any commit you push to your branch will then be added to this pull request.