Re: Automatically initialise the project as git repo

2019-01-26 Thread Dmitriy Sintsov
On Friday, January 25, 2019 at 3:35:40 PM UTC+3, mihir karbelkar wrote: > > Hi, > I have made several projects with Django but every time I create a new > project I have to initialize the repo for git. It would be better if the > project initialized itself. Maybe we can add this feature in to h

Re: Automatically initialise the project as git repo

2019-01-25 Thread Adam Johnson
Agree Feel free to make a script that does startproject, git init, and anything else you need. Did you know startproject supports templates so if you’re really cranking out projects with a standard format, you can make one for yourself to save much more time there? On Fri, 25 Jan 2019 at 12:42,

Re: Automatically initialise the project as git repo

2019-01-25 Thread Kye Russell
I am against this. It assumes too much about the user's system and version management preferences. I think there is little to gain given that `git init .` is 10 characters. On Fri, Jan 25, 2019 at 8:35 PM mihir karbelkar wrote: > Hi, > I have made several projects with Django but every time I c