You could have something like this: / /web2py/ /web2py/.git /web2py/.gitignore /web2py/gluon /web2py/blah<other stuff that belongs to web2py, not your app /web2py/applications/<soft link to app such as ../myapps/mygreatapp> /common_files /common_files/.git /common_files/.gitignore /common_files/models /common_files/modules /common_files/static # you get the idea /myapps/ /myapps/.git /myapps/mygreatapp /myapps/mygreatapp/<softlink to ../../common_files/modules/some_module.py>
repeat as necessary I use the common files directory for the main db.py, common css, common views, common js, etc across all my apps. That way everything I deliver has the same look and feel and (buzzword alert) user experience. On Wednesday, September 25, 2013 6:47:14 AM UTC-4, Ramos wrote: > > Hello , i´m starting to learn git but have a question > > I have my web2py cloned from git > inside web2py i have the application folder > if i git init inside app1 is there some kind of conflict with the web2py > folder git? > > > Thank you > > António > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

