Re: Git migration

2012-05-04 Thread Jesús García Crespo
Hi Eugenio, On Thu, May 3, 2012 at 8:58 PM, Eugenio Minardi wrote: > ...just make sure that the statics stays out of the repository and that > into the .gitignore file there are no required path or extensions > I like my static files to be in git, you can always create a secondary repository for

Re: Git migration

2012-05-04 Thread Eugenio Minardi
Hi, to be sure that all your code is into the repo try with git status and check if all the files are tracked. Then with git add NAME you can track a single file, a folder or a set of file and folder. With git add . you can track all the files. Eugenio On Fri, May 4, 2012 at 3:46 PM, Stanwin Si

Re: Git migration

2012-05-04 Thread Stanwin Siow
Thanks everyone for the replies. Reason why i'm asking was because after the migration it seemed that my django registration module was not picked up. Hence login and registration are now unavailable. Was looking at all ways to resolve it. Shall dig deeper. Thanks! Best Regards, Stanwin S

Re: Git migration

2012-05-04 Thread Rivsen
hi Stanwin, I think git is tool to manage your code, no matter it is python or php or etc. Migrate code from svn to git, you just make sure your svn commit log is right in git repo. And if you just want use git in your development, don't care the remote is svn or git, you can try git-svn, this i

Re: Git migration

2012-05-03 Thread Eugenio Minardi
Hi, It is more than one year I am using GIT with Django and there are no problems, just make sure that the statics stays out of the repository and that into the .gitignore file there are no required path or extensions Eugenio Il giorno 04/mag/2012 05:55, "Larry Martell" ha scritto: > On Thu, Ma

Re: Git migration

2012-05-03 Thread Larry Martell
On Thu, May 3, 2012 at 9:42 PM, Stanwin Siow wrote: > Hello there, > > Just wanted to enquire about a project that i have been working on. > > It was previously hosted on an svn repository however my supervisor then > decided to migrate it to GIT. > > my question here would be do i need to reinsta

Git migration

2012-05-03 Thread Stanwin Siow
Hello there, Just wanted to enquire about a project that i have been working on. It was previously hosted on an svn repository however my supervisor then decided to migrate it to GIT. my question here would be do i need to reinstall the external modules that i used in my django project like dj