tutorials
The Meteor tutorials from meteor.com
File Explorer
- metadata.js
- step02.md
- step03.md
- step04.md
- step05.md
- step06.md
- step07.md
- step08.md
- step09.md
- step10.md
- step11.md
- step12.md
- metadata.js
- step02.md
- step03.md
- step04.md
- step05.md
- step07.md
- step08.md
- step09.md
- step10.md
- step11.md
- step12.md
- adding-css.js
- adding-css.md
- explanations.md
- nextSteps.md
- step01.md
- step06.md
- metadata.js
- step02.md
- step03.md
- step04.md
- step05.md
- step07.md
- step08.md
- step09.md
- step10.md
- step11.md
- step12.md
- metadata.js
- step02.md
- step03.md
- step04.md
- step05.md
- step07.md
- step08.md
- step09.md
- step10.md
- step11.md
- step12.md
- .DS_Store
- step00.html
- angular.multi.patch
- blaze.multi.patch
- svelte.multi.patch
- vue.multi.patch
- angular
- blaze
- svelte
- vue
- process-repo.rb
- .gitignore
- .gitmodules
- LICENSE
- package-lock.json
- package.js
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git rebase
View Details ▼
git rebase
Reapply commits from one branch on top of another branch.
Commonly used to "move" an entire branch to another base, creating copies of the commits in the new location.
git rebase {{new_base_branch}}
Rebase the current branch on top of another specified branch:
git rebase {{[-i|--interactive]}} {{target_base_branch_or_commit_hash}}
Start an interactive rebase, which allows the commits to be reordered, omitted, combined, or modified:
git rebase --continue
Continue a rebase that was interrupted by a merge failure, after editing conflicting files:
git submodule
View Details ▼
git submodule
Inspect, update, and manage submodules.
git submodule
View existing submodules and the checked-out commit for each one:
git submodule update --init --recursive
Install a repository's submodules (listed in `.gitmodules`):
git submodule add {{repository_url}}
Add a Git repository as a submodule of the current one:
meteor
View Details ▼
meteor
Full-stack JavaScript platform for building web applications.
meteor
Run a meteor project from its root directory in development mode:
meteor create {{path/to/directory}}
Create a project under the given directory:
meteor list
Display the list of packages the project is currently using:
