File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ permalink: github
17
17
* Check if Git is installed
18
18
* In the terminal type `git --version` (1.8 or higher preferred)
19
19
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:
22
22
* Type `git config --global user.name "your-name"`
23
23
* 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`
26
26
27
27
* Create a free [ GitHub] ( https://github.com ) account or login if you already have one
28
28
@@ -34,8 +34,6 @@ On your GitHub profile click "new repo" ![screen shot 2013-06-01 at 12 38 50 pm]
34
34
35
35
In the command line--make sure you ` cd ` into your railgirls folder--and type:
36
36
37
- (need to use the highlight feature here)
38
-
39
37
` git init `
40
38
41
39
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
89
87
If you want to continue making changes and pushing them to GitHub you'll just need to use the following three commands:
90
88
91
89
` git add . `
90
+
92
91
` git commit -m "type your commit message here" `
92
+
93
93
` git push origin master `
94
94
95
95
## What's next?
You can’t perform that action at this time.
0 commit comments