Skip to content

freshsocks/new-proj

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Git Commands

Cloning to a new project

Suppose you always start from the same base app. This base app is maintained in a repo called "freshstart". Every project you start, you want it to start with the "freshstart" base app.

You also want you project to be linked to "freshstart", so that every time it is updated, your new project gets the updates to it's base app as well.

Remotely create

curl -u 'stevefloat:PASS' https://api.github.com/user/repos -d '{"name":"new-proj"}'

Start a new repo

curl -u 'stevefloat:PASS' https://api.github.com/user/repos -d '{"name":"new-proj"}'
cd ~/git
git init new-proj
cd new-proj
git remote add origin https://github.com/stevefloat/new-proj
git remote add base https://github.com/stevefloat/freshstart
git add .
git commit -a -m "setup"
git pull --rebase base master
git push origin master

git config --global core.mergeoptions --no-edit

Some remote stuff

git remote -v show
git remote update

References

TODO

See TODO.md to see a stream-of-conciousness log of how this came about.

Future Apps

  • Prolific Like tumblr meets wordpress for art school kids.
  • Shopaholic An e-commerce app framework utilizing stripe API

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published