Skip to content

Commit de2d821

Browse files
committed
Update 2013-04-14-github.md
more little changes
1 parent 2e62538 commit de2d821

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

_posts/2013-04-14-github.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ permalink: github
1717
* Check if Git is installed
1818
* In the terminal type `git --version` (1.8 or higher preferred)
1919

20-
* If not, download Git [here](http://git-scm.com/downloads)
21-
Then setup your local Git profile - In the terminal:
20+
* If not, download Git [here] (http://git-scm.com/downloads).
21+
Then, setup your local Git profile - In the terminal:
2222
* Type `git config --global user.name "your-name"`
2323
* Type `git config --global user.email "your-email"`
24-
25-
(To check if Git is already config-ed you can type git config --list)
24+
25+
* _To check if Git is already config-ed you can type_ `git config --list`
2626

2727
* Create a free [GitHub](https://github.com) account or login if you already have one
2828

@@ -34,8 +34,6 @@ On your GitHub profile click "new repo" ![screen shot 2013-06-01 at 12 38 50 pm]
3434

3535
In the command line--make sure you `cd` into your railgirls folder--and type:
3636

37-
(need to use the highlight feature here)
38-
3937
`git init`
4038

4139
This initializes a git repository in your project
@@ -89,7 +87,9 @@ Congratulations your app is on GitHub! Go check it out by going to the same url
8987
If you want to continue making changes and pushing them to GitHub you'll just need to use the following three commands:
9088

9189
`git add .`
90+
9291
`git commit -m "type your commit message here"`
92+
9393
`git push origin master`
9494

9595
## What's next?

0 commit comments

Comments
 (0)