117

I get this error when I try to change branch.

Probably I will give some information of the commands at

/path/to/git/repo/.

upon command:

git branch

I get following output

* V1.5
  V2.0
  master

And when I try the command

git checkout V2.0

I get following output:

fatal: This operation must be run in a work tree

config file contents:

cat config 
[core]
        repositoryformatversion = 0
        filemode = true
        bare = true
[remote "origin"]
        url = /path/to/git/repo/.git
1
  • 1
    It seems you have a bare repo. Bare repos don't have a working tree, so git checkout doesn't make sense for them.
    – svick
    Feb 13, 2012 at 15:17

1 Answer 1

82

You repository is bare, i.e. it does not have a working tree attached to it. You can clone it locally to create a working tree for it, or you could use one of several other options to tell Git where the working tree is, e.g. the --work-tree option for single commands, or the GIT_WORK_TREE environment variable. There is also the core.worktree configuration option but it will not work in a bare repository (check the man page for what it does).

# git --work-tree=/path/to/work/tree checkout master
# GIT_WORK_TREE=/path/to/work/tree git status
17
  • 8
    Uhm… by using the --work-tree option, by setting the GIT_WORK_TREE environment variable, or by setting the core.worktree configuration option. I have a déjà vu.
    – Bombe
    Feb 15, 2012 at 8:34
  • 6
    the working tree must exist, otherwise it fails
    – gengisdave
    Feb 15, 2016 at 11:25
  • 39
    My downvote was for telling us /what/ we can do, but not /how/ to do it. Git is notoriously ornery for occasional users, and we come to s/o looking for how.
    – philologon
    Jun 1, 2016 at 13:38
  • 68
    Where the hell is the worktree? Feb 23, 2017 at 15:07
  • 91
    I know this is an old thread but for me the issue was that I was in the .git sub directory. Once I cd'ed out of it, everything worked fine. Aug 5, 2017 at 15:40

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