Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit febda8f

Browse files
sibStephenNarretz
authored andcommitted
Essential note when cloning into Angular repository
1) First change - Whenever cloning into directory there are chances of some users using "sudo" without knowing what it does exactly and what's the purpose of using sudo, leading them into a confusion and this lead to changes in git config and permission issues of which users may not be able to figure out at one spot. 2) Second Change- There are chances of version unstability issues in node which at times causes npm error and warnings while installing packages, I too had undergone some issues with node version conflicts at times, users who are not aware of this will be benefited with a Note prior.
1 parent 00cdc94 commit febda8f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/content/misc/contribute.ngdoc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ To build AngularJS, you clone the source code repository and use Grunt to genera
5252
minified AngularJS files:
5353

5454
```shell
55-
# Clone your Github repository:
55+
# Clone your Github repository(Note: Do not go with `sudo` user when cloning into this repository
56+
if not known what it does essentially, please refer https://www.linux.com/learn/tutorials/306766:linux-101-introduction-to-sudo):
5657
git clone "git@github.com:<github username>/angular.js.git"
5758

5859
# Go to the AngularJS directory:
@@ -61,7 +62,7 @@ cd angular.js
6162
# Add the main AngularJS repository as an upstream remote to your repository:
6263
git remote add upstream "https://github.com/angular/angular.js.git"
6364

64-
# Install node.js dependencies:
65+
# Install node.js dependencies(Note: Please check for the stable version of node before installing the essential packages):
6566
npm install
6667

6768
# Install bower components:

0 commit comments

Comments
 (0)