pwd
cd dir-name
ls
mkdir dir-name
# Navigate to your "Documents" directory
# Create a new directory "quick-exercise"
# Navigate to your "quick-exercise" directory
# Create a file called "test-file.r" using the touch command
# Open "test-file.r" (from the terminal) and edit it
# View the contents of the file in your terminal
# Bonus: Create 10 files with one line
git init
git add *
git commit -m "..."
Repeat these steps each time you make changes
git init
git add *
git commit -m "message"
git clone
git add *
git commit -m ".."
git push
git clone https://github.com/USERNAME/github-practice/
git commit -m "Message goes here"
git add .
git push origin master
# github-practice
Add (or remove) some text
# Markdown Description
Allows you to apply simple syntax to create
well formatted documents, including the ability to:
- Make text **bold**, *italicized*, or `monospace`
- Have headers
- Create lists
1. Ordered lists
2. Or unordered lists
# Header
## Sub-header
...
###### Smallest header
**bold**
*italicized*
~~strikethrough~~
`monospace`
>Here is where you can put an indented quote
```
Multiple lines
Of code
In here
```