Skip to content

Commit a14b423

Browse files
committed
docs(gettingStarted:installation): add section about git
[skip ci]
1 parent fcf18d3 commit a14b423

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

docs/01_Getting_Started/02_Installation.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,20 @@ hitting `ENTER` will use the default options for that question, and move on to t
1212
Once you've answered all the questions, a project will be scaffolded for you according to the options you entered. Then, npm dependencies
1313
will automatically be installed. Once that's all complete, you're ready to get started with your app!
1414

15+
## Git
16+
17+
Run the following:
18+
```bash
19+
git init && git add . && git commit -m 'Initial Commit'
20+
```
21+
22+
Go to https://github.com/new and enter a repository name. Click 'Create repository'. Then push to your remote repository with these commands:
23+
24+
```bash
25+
git remote add origin git@github.com:<YOUR_USERNAME>/<YOUR_APPNAME>.git
26+
git push -u origin master
27+
```
28+
29+
> Note: replace `<YOUR_USERNAME>` & `<YOUR_APPNAME>` with your GitHub username and repository name.
30+
31+
Commit early and commit often. Branches are cheap; use them often.

0 commit comments

Comments
 (0)