Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
Moecube Store
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
Moecube Store
Commits
08a8c8ad
Commit
08a8c8ad
authored
Apr 07, 2016
by
Ward Bell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rid of silly $ prompt so people can copy/paste
parent
c17b1fba
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
README.md
README.md
+10
-10
No files found.
README.md
View file @
08a8c8ad
...
@@ -7,14 +7,14 @@ the foundation for most of the documentation samples and potentially a good star
...
@@ -7,14 +7,14 @@ the foundation for most of the documentation samples and potentially a good star
Clone this repo into new project folder (e.g.,
`my-proj`
).
Clone this repo into new project folder (e.g.,
`my-proj`
).
```
bash
```
bash
$
git clone https://github.com/angular/quickstart my-proj
git clone https://github.com/angular/quickstart my-proj
$
cd
my-proj
cd
my-proj
```
```
We have no intention of updating the source on
`angular/quickstart`
.
We have no intention of updating the source on
`angular/quickstart`
.
Discard everything "git-like" by deleting the
`.git`
folder.
Discard everything "git-like" by deleting the
`.git`
folder.
```
bash
```
bash
$
rm
-rf
.git
rm
-rf
.git
```
```
### Create a new git repo
### Create a new git repo
...
@@ -23,25 +23,25 @@ If you'd rather preserve your work under source control, consider taking the fol
...
@@ -23,25 +23,25 @@ If you'd rather preserve your work under source control, consider taking the fol
Initialize this project as a
*local git repo*
and make the first commit:
Initialize this project as a
*local git repo*
and make the first commit:
```
bash
```
bash
$
git init
git init
$
git add
.
git add
.
$
git commit
-m
"Initial commit"
git commit
-m
"Initial commit"
```
```
Create a
*remote repository*
for this project on the service of your choice.
Create a
*remote repository*
for this project on the service of your choice.
Grab its address (e.g.
*`https://github.com/<my-org>/my-proj.git`*
) and push the
*local repo*
to the
*remote*
.
Grab its address (e.g.
*`https://github.com/<my-org>/my-proj.git`*
) and push the
*local repo*
to the
*remote*
.
```
bash
```
bash
$
git remote add origin <repo-address>
git remote add origin <repo-address>
$
git push
-u
origin master
git push
-u
origin master
```
```
### Start development
### Start development
Install the npm packages described in the
`package.json`
and verify that it works:
Install the npm packages described in the
`package.json`
and verify that it works:
```
bash
```
bash
$
npm
install
npm
install
$
npm start
npm start
```
```
You're ready to write your application.
You're ready to write your application.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment