From c9055e51fe06c70dd6376a960f18bbf5babb4a1b Mon Sep 17 00:00:00 2001 From: Cameron McEfee Date: Fri, 25 Feb 2011 16:17:08 -0800 Subject: Updated content and added a new 'more info' tool --- _posts/2011-02-16-create-a-repo.markdown | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to '_posts/2011-02-16-create-a-repo.markdown') diff --git a/_posts/2011-02-16-create-a-repo.markdown b/_posts/2011-02-16-create-a-repo.markdown index ac8af10..cba62d8 100644 --- a/_posts/2011-02-16-create-a-repo.markdown +++ b/_posts/2011-02-16-create-a-repo.markdown @@ -33,14 +33,14 @@ While a README isn’t a required part of a GitHub repo, it is a good idea t In the prompt, type the following code:
-	$ mkdir ~/Hello-WorldCreates a folder for your project called "Hello-World" in your user folder
-	$ cd ~/Hello-WorldChanges the active directory in the prompt to your newly created folder
+	$ mkdir ~/Hello-WorldCreates a directory for your project called "Hello-World" in your user directory
+	$ cd ~/Hello-WorldChanges the current working directory to your newly created directory
 	$ git initSets up the necessary Git files
-	Initialized empty Git repository in /Users/your_user_directory/Hello-World/.git/
-	$ touch READMECreates a file called "README" in your Hello-World folder
+	Initialized empty Git repository in /Users/your_user_directory/Hello-World/.git/
+	$ touch READMECreates a file called "README" in your Hello-World directory
 	
- Open the new README file found in your Hello-World folder in a text editor and add the text “Hello World!.” When you are finished, save and close the file. + Open the new README file found in your Hello-World directory in a text editor and add the text “Hello World!.” When you are finished, save and close the file. 2. Commit your README -- cgit v1.3.1