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

Essential note when cloning into Angular repository #12875

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/content/misc/contribute.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,16 @@ minified AngularJS files:
# Clone your Github repository:
git clone "git@github.com:<github username>/angular.js.git"

**Note:** You may need to use sudo (for OSX, *nix, BSD etc) or run your command shell as Administrator (for Windows) to install Grunt &amp;
Bower globally.

# Go to the AngularJS directory:
cd angular.js

# Add the main AngularJS repository as an upstream remote to your repository:
git remote add upstream "https://github.com/angular/angular.js.git"

# Install node.js dependencies:
# Install node.js dependencies(Note: Please check for the stable version of node before installing the essential packages):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is meant by "check for the stable version of node"? That you should make sure you are running the stable version of node?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes that's what i meant as such, sometimes there are version dependency errors while installing node.js .

npm install

# Install bower components:
Expand Down