Re: Coming from SVN world - need help
From: J. Bakshi <hidden>
Date: 2016-06-15 22:51:35
On Wed, 13 Jul 2011 15:17:36 +0200 Erik Faye-Lund [off-list ref] wrote:
On Wed, Jul 13, 2011 at 3:00 PM, J. Bakshi [off-list ref] wrote:quoted
And now the issues when I am trying to do the same with git [1] git init ${git_path}/<repo>.git >>> ok , it is workingYou probably want to add the "--bare"-flag if this is the repo that will be published.
Actually the practical scenario is different than just a bare repo. The repos should be connected with its working copy located at htdocs directory. So whenever someone commit anything in git the corresponding working directory should be updated accordingly with a post-commit hook. I have done the same in svn but don't know how git will help to achieve this ? The main part, How can I simply map the folder in htdocs with it's master in git repo ? As "git clone" actually creates the parent folder. In svn it was easy with
````````````
cd mydir
mydir $> svn --username ${admin_svn} --password ${admin_svn_pass} co file:///${svn_path}/${name_site}/trunk ./
``````````````
How can I achieve the same in git ?