git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* how to add files/folder from work-tree
@ 2011-07-19  6:30 J. Bakshi
       [not found] ` <4E2537F8.6000506@gmail.com>
  0 siblings, 1 reply; 5+ messages in thread
From: J. Bakshi @ 2011-07-19  6:30 UTC (permalink / raw)
  To: git

Hello,

I am using a git repo which has detached work tree. I like to add the files, folders located at the work tree ( it is a site under htdocs) at the git repo. Is it possible to do it within the work-tree or I need a separate working space from where I need to do all these operation ?

Thanks
 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: how to add files/folder from work-tree
       [not found]   ` <20110719133633.0797713d@shiva.selfip.org>
@ 2011-07-19  8:13     ` Chris Packham
  2011-07-19  8:22       ` J. Bakshi
  2011-07-20 10:16       ` J. Bakshi
  0 siblings, 2 replies; 5+ messages in thread
From: Chris Packham @ 2011-07-19  8:13 UTC (permalink / raw)
  To: J. Bakshi; +Cc: git@vger.kernel.org

Oops managed to drop the Cc for the mailing list from my initial response.

On 19/07/11 20:06, J. Bakshi wrote:
> On Tue, 19 Jul 2011 19:53:28 +1200
> Chris Packham <judge.packham@gmail.com> wrote:
> 
>> On 19/07/11 18:30, J. Bakshi wrote:
>>> Hello,
>>>
>>> I am using a git repo which has detached work tree. I like to add the files, folders located at the work tree ( it is a site under htdocs) at the git repo. Is it possible to do it within the work-tree or I need a separate working space from where I need to do all these operation ?
>>>
>>> Thanks
>>>  
>>> --
>>
>> I'm not sure I fully understand your question but what I _think_ you
>> want to do is specify the path to the repository with the GIT_DIR
>> environment variable. Like this
>>
>>  cd /place/where/files/are
>>  GIT_DIR=/place/were/repo/is/.git git add <file>
>>
> 
> 
> I have set a git repo with attached work-tree with hook as below
> 
> git -bare init  /home/git/test.git
> cd /home/git/test.git
> git config core.worktree /var/www/test
> 
> vim /home/git/test.git/hooks/post-receive
> 
> #!/bin/sh
> git checkout -f
> 
> Now the /var/www/test has already some files/folder. How can I add those to the repo within from its work-tree ?
> 
> Thanks

I think my initial response is correct. Try the following

  cd /var/www/test
  git --git-dir=/home/git/test.git add <files>
  git --git-dir=/home/git/test.git commit -m "blah"

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: how to add files/folder from work-tree
  2011-07-19  8:13     ` Chris Packham
@ 2011-07-19  8:22       ` J. Bakshi
  2011-07-20 10:16       ` J. Bakshi
  1 sibling, 0 replies; 5+ messages in thread
From: J. Bakshi @ 2011-07-19  8:22 UTC (permalink / raw)
  To: Chris Packham; +Cc: git@vger.kernel.org

On Tue, 19 Jul 2011 20:13:08 +1200
Chris Packham <judge.packham@gmail.com> wrote:

> Oops managed to drop the Cc for the mailing list from my initial response.
> 
> On 19/07/11 20:06, J. Bakshi wrote:
> > On Tue, 19 Jul 2011 19:53:28 +1200
> > Chris Packham <judge.packham@gmail.com> wrote:
> > 
> >> On 19/07/11 18:30, J. Bakshi wrote:
> >>> Hello,
> >>>
> >>> I am using a git repo which has detached work tree. I like to add the files, folders located at the work tree ( it is a site under htdocs) at the git repo. Is it possible to do it within the work-tree or I need a separate working space from where I need to do all these operation ?
> >>>
> >>> Thanks
> >>>  
> >>> --
> >>
> >> I'm not sure I fully understand your question but what I _think_ you
> >> want to do is specify the path to the repository with the GIT_DIR
> >> environment variable. Like this
> >>
> >>  cd /place/where/files/are
> >>  GIT_DIR=/place/were/repo/is/.git git add <file>
> >>
> > 
> > 
> > I have set a git repo with attached work-tree with hook as below
> > 
> > git -bare init  /home/git/test.git
> > cd /home/git/test.git
> > git config core.worktree /var/www/test
> > 
> > vim /home/git/test.git/hooks/post-receive
> > 
> > #!/bin/sh
> > git checkout -f
> > 
> > Now the /var/www/test has already some files/folder. How can I add those to the repo within from its work-tree ?
> > 
> > Thanks
> 
> I think my initial response is correct. Try the following
> 
>   cd /var/www/test
>   git --git-dir=/home/git/test.git add <files>
>   git --git-dir=/home/git/test.git commit -m "blah"
> 
> 

Great !! Thanks 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: how to add files/folder from work-tree
  2011-07-19  8:13     ` Chris Packham
  2011-07-19  8:22       ` J. Bakshi
@ 2011-07-20 10:16       ` J. Bakshi
  2011-07-20 10:52         ` J. Bakshi
  1 sibling, 1 reply; 5+ messages in thread
From: J. Bakshi @ 2011-07-20 10:16 UTC (permalink / raw)
  To: Chris Packham; +Cc: git@vger.kernel.org

On Tue, 19 Jul 2011 20:13:08 +1200
Chris Packham <judge.packham@gmail.com> wrote:

> Oops managed to drop the Cc for the mailing list from my initial response.
> 
> On 19/07/11 20:06, J. Bakshi wrote:
> > On Tue, 19 Jul 2011 19:53:28 +1200
> > Chris Packham <judge.packham@gmail.com> wrote:
> > 
> >> On 19/07/11 18:30, J. Bakshi wrote:
> >>> Hello,
> >>>
> >>> I am using a git repo which has detached work tree. I like to add the files, folders located at the work tree ( it is a site under htdocs) at the git repo. Is it possible to do it within the work-tree or I need a separate working space from where I need to do all these operation ?
> >>>
> >>> Thanks
> >>>  
> >>> --
> >>
> >> I'm not sure I fully understand your question but what I _think_ you
> >> want to do is specify the path to the repository with the GIT_DIR
> >> environment variable. Like this
> >>
> >>  cd /place/where/files/are
> >>  GIT_DIR=/place/were/repo/is/.git git add <file>
> >>
> > 
> > 
> > I have set a git repo with attached work-tree with hook as below
> > 
> > git -bare init  /home/git/test.git
> > cd /home/git/test.git
> > git config core.worktree /var/www/test
> > 
> > vim /home/git/test.git/hooks/post-receive
> > 
> > #!/bin/sh
> > git checkout -f
> > 
> > Now the /var/www/test has already some files/folder. How can I add those to the repo within from its work-tree ?
> > 
> > Thanks
> 
> I think my initial response is correct. Try the following
> 
>   cd /var/www/test
>   git --git-dir=/home/git/test.git add <files>

But this response as

````
fatal: This operation must be run in a work tree
`````````

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: how to add files/folder from work-tree
  2011-07-20 10:16       ` J. Bakshi
@ 2011-07-20 10:52         ` J. Bakshi
  0 siblings, 0 replies; 5+ messages in thread
From: J. Bakshi @ 2011-07-20 10:52 UTC (permalink / raw)
  Cc: Chris Packham, git@vger.kernel.org

On Wed, 20 Jul 2011 15:46:44 +0530
"J. Bakshi" <joydeep@infoservices.in> wrote:

> On Tue, 19 Jul 2011 20:13:08 +1200
> Chris Packham <judge.packham@gmail.com> wrote:
> 
> > Oops managed to drop the Cc for the mailing list from my initial response.
> > 
> > On 19/07/11 20:06, J. Bakshi wrote:
> > > On Tue, 19 Jul 2011 19:53:28 +1200
> > > Chris Packham <judge.packham@gmail.com> wrote:
> > > 
> > >> On 19/07/11 18:30, J. Bakshi wrote:
> > >>> Hello,
> > >>>
> > >>> I am using a git repo which has detached work tree. I like to add the files, folders located at the work tree ( it is a site under htdocs) at the git repo. Is it possible to do it within the work-tree or I need a separate working space from where I need to do all these operation ?
> > >>>
> > >>> Thanks
> > >>>  
> > >>> --
> > >>
> > >> I'm not sure I fully understand your question but what I _think_ you
> > >> want to do is specify the path to the repository with the GIT_DIR
> > >> environment variable. Like this
> > >>
> > >>  cd /place/where/files/are
> > >>  GIT_DIR=/place/were/repo/is/.git git add <file>
> > >>
> > > 
> > > 
> > > I have set a git repo with attached work-tree with hook as below
> > > 
> > > git -bare init  /home/git/test.git
> > > cd /home/git/test.git
> > > git config core.worktree /var/www/test
> > > 
> > > vim /home/git/test.git/hooks/post-receive
> > > 
> > > #!/bin/sh
> > > git checkout -f
> > > 
> > > Now the /var/www/test has already some files/folder. How can I add those to the repo within from its work-tree ?
> > > 
> > > Thanks
> > 
> > I think my initial response is correct. Try the following
> > 
> >   cd /var/www/test
> >   git --git-dir=/home/git/test.git add <files>
> 
> But this response as
> 
> ````
> fatal: This operation must be run in a work tree
> `````````

OK, need to append also --work-tree=/var/www/test

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-07-20 10:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-19  6:30 how to add files/folder from work-tree J. Bakshi
     [not found] ` <4E2537F8.6000506@gmail.com>
     [not found]   ` <20110719133633.0797713d@shiva.selfip.org>
2011-07-19  8:13     ` Chris Packham
2011-07-19  8:22       ` J. Bakshi
2011-07-20 10:16       ` J. Bakshi
2011-07-20 10:52         ` J. Bakshi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).