@@ -10,7 +10,7 @@ It also explains the basic mechanics of using `git`, `node`, and `npm`.
10
10
* [ Running Tests Locally] ( #running-tests-locally )
11
11
* [ Formatting] ( #clang-format )
12
12
13
- See the [ contribution guidelines] ( https://github.com/ng-bootstrap/core /blob/master/CONTRIBUTING.md )
13
+ See the [ contribution guidelines] ( https://github.com/ng-bootstrap/ng-bootstrap /blob/master/CONTRIBUTING.md )
14
14
if you'd like to contribute to ng-bootstrap.
15
15
16
16
## Prerequisite Software
@@ -35,19 +35,19 @@ Fork and clone the ng-bootstrap repository:
35
35
1 . Login to your GitHub account or create one by following the instructions given
36
36
[ here] ( https://github.com/signup/free ) .
37
37
2 . [ Fork] ( http://help.github.com/forking ) the [ main ng-bootstrap
38
- repository] ( https://github.com/ng-bootstrap/core ) .
39
- 3 . Clone your fork of the ng-bootstrap's core repository and define an ` upstream ` remote pointing back to
40
- the ng-bootstrap's core repository that you forked in the first place.
38
+ repository] ( https://github.com/ng-bootstrap/ng-bootstrap ) .
39
+ 3 . Clone your fork of the ng-bootstrap's ng-bootstrap repository and define an ` upstream ` remote pointing back to
40
+ the ng-bootstrap's ng-bootstrap repository that you forked in the first place.
41
41
42
42
``` shell
43
43
# Clone your GitHub repository:
44
- git clone
[email protected] :
< github username
> /
core .git ng-bootstrap
44
+ git clone
[email protected] :
< github username
> /
ng-bootstrap .git ng-bootstrap
45
45
46
- # Go to the core directory:
46
+ # Go to the ng-bootstrap directory:
47
47
cd ng-bootstrap
48
48
49
49
# Add the main ng-bootstrap repository as an upstream remote to your repository:
50
- git remote add upstream https://github.com/ng-bootstrap/core .git
50
+ git remote add upstream https://github.com/ng-bootstrap/ng-bootstrap .git
51
51
```
52
52
53
53
## Installing NPM Modules and typings
@@ -129,7 +129,7 @@ to some whitespace difference.
129
129
* ` clang-format ` also includes a git hook, run ` git clang-format ` to format all files you
130
130
touched.
131
131
* You can run this as a ** git pre-commit hook** to automatically format your delta regions when you
132
- commit a change. In the core repo, run
132
+ commit a change. In the ng-bootstrap repo, run
133
133
134
134
```
135
135
$ echo -e '#!/bin/sh\nexec git clang-format' > .git/hooks/pre-commit
@@ -149,4 +149,4 @@ to some whitespace difference.
149
149
- Parameters: ` -i -style=file $FilePath$ `
150
150
- Working directory: ` $ProjectFileDir$ `
151
151
* ` clang-format ` integrations are also available for many popular editors (` vim ` , ` emacs ` ,
152
- ` Sublime Text ` , etc.).
152
+ ` Sublime Text ` , etc.).
0 commit comments