improving instructions

This commit is contained in:
Tom Johnson
2015-04-24 11:28:19 -07:00
parent a0ccf6bde4
commit a44149986a
6 changed files with 143 additions and 79 deletions

View File

@ -1,6 +0,0 @@
---
title: "Knowledgebase Article"
tags: troubleshooting
---
This post is a placeholder for troubleshooting content and knowledge-base style articles. These kinds of articles will appear here.

View File

@ -0,0 +1,10 @@
Using iTerm, create the directory where you want to install the project. I like using ~[username]/projects, because ~[username] is the default directory that appears when you open iTerm on a Mac.
```
cd projects
mkdir acme
cd acme
```
2. Once you're inside the folder for your project (for example, acme), type `git clone https://github.com/tomjohnson1492/documentation-theme-jekyll.git .` (The ` .` means to clone the github repo into the current directory. Make sure the directory is empty before cloning the theme in there.)
3. In your new project folder, remove the .git folder, because no doubt you'll be customizing this project's content and committing it to another revision control repository.