Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to add and commit a file in git without changing my current working directory. Is this possible?

> pwd
/tmp 

> git --git-dir=/tmp/git_test/.git init
Initialized empty Git repository in /tmp/git_test/.git/

> ls /tmp/git_test
commit1

> git --git-dir=/tmp/git_test/.git add /tmp/git_test/commit1
fatal: '/tmp/git_test/commit1' is outside repository

> git --git-dir=/tmp/git_test/.git add commit1
fatal: pathspec 'commit1' did not match any files

(git add -A seems to use the current working directory, rather than the argument to --git-dir)

share|improve this question
It may be "cheating", but running (cd /tmp/git-test; git add commit1) will leave your outer shell in the same directory it had been before spawning the subshell which runs everything within (...). – Charles Duffy Mar 21 '12 at 1:25
Answered elsewhere on Stack Overflow:stackoverflow.com/questions/1386291/… – dnw Mar 21 '12 at 1:25

1 Answer

You missed an option: --work-tree. If you're outside the repository, you need to supply both that and --git-dir:

--work-tree=<path>

Set the path to the working tree. It can be an absolute path or a path relative to the current working directory. This can also be controlled by setting the GIT_WORK_TREE environment variable and the core.worktree configuration variable (see core.worktree in git-config(1) for a more detailed discussion).

share|improve this answer
Thanks! This is exactly what I wanted. – dnw Mar 21 '12 at 1:26
@dnw: If the answer is acceptable to you, please remember to accept the answer. Also see: faq. If you have a low accept rate, people will be unlikely to answer future questions you ask. – Richard Hansen Mar 31 '12 at 17:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.