Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mwbrooks/incubator-cordova-labs
Mirror of Apache Cordova labs
https://github.com/mwbrooks/incubator-cordova-labs
Last synced: 18 days ago
JSON representation
Mirror of Apache Cordova labs
- Host: GitHub
- URL: https://github.com/mwbrooks/incubator-cordova-labs
- Owner: mwbrooks
- Created: 2012-07-12T18:18:39.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-08-07T23:54:32.000Z (over 12 years ago)
- Last Synced: 2024-10-28T21:11:02.650Z (2 months ago)
- Size: 95.7 KB
- Stars: 2
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cordova Laboratory
> Caution: Safety Goggles are Recommended!
## Purpose
The purpose of this repo is for experimental code. Examples include demo apps,
native api explorations, or anything really that does not fit in an existing Cordova platform.## Project Organization
> Everyone works on a branch
`master` branch should *never* have content.
Each project should create a separate branch to work on. There are major benefits
to this practice:- Each project has an isolate git history, which allows for easy migration to
a new git repository;
- Working directory is not polluted with the files of other projects.
- Projects will not step on each others toes.## Moving Out of Labs
Someday, your labs project may have it's own repository. You can easily move
all of your Git history to your new repository:# cd to labs and checkout your project's branch
cd incubator-cordova-labs
git checkout my-branch# add your new repository as a remote
git add remote my-remote# currently, my-remote is empty (has no commits)
# push my-branch to my-remote's master branch
git push my-remote my-branch:master# now clone your new project (my-remote)
cd ..
git clone