This is a README file, which is a Markdown file. Markdown is a way to format text on the web. A README file is a good place to put information about your project. It's common to put things like:
- How to install your project
- How to use your project
- Fork this repository and clone it to your computer (if you haven't already)
- Create a new branch, give it a good name (e.g.
firstname-workshop-feature
) - Make a change to this file - add your name to the list below!
- Create a new file in this directory, it can be anything you want! (e.g. a fun little hello world program in your language of choice)
- Commit your changes
- Push your changes to your fork
- Open a pull request to merge your changes into the main repository
- Celebrate!
git clone <url>
: clone a repository from a URLgit branch <name>
: create a new branchgit checkout <name>
: switch to a branchgit add <file>
: add a file to the staging areagit commit -m "<message>"
: commit changes with a messagegit push
: push changes to a remote repositorygit pull
: pull changes from a remote repository
- Tyler Thompson 🤘