On Wed, Feb 24, 2016 at 3:26 PM, Jeff King <peff@xxxxxxxx> wrote: > On Wed, Feb 24, 2016 at 08:47:00AM +0100, Johannes Schindelin wrote: > >> It is a pilot error to call `git config section.key value` outside of >> any Git worktree. >> >> Let's report that error instead of creating the .git/ directory and >> writing a fresh config into it. > > Hmm. I get (on my Linux machine): > > $ git config foo.bar baz > error: could not lock config file .git/config: No such file or directory Yep, tried the same thing before I asked about the .git dir thing on gfw list. Same result. > which makes sense (though still isn't a great error message, and is kind > of weird if you happen to have a .git directory that isn't a real > repository). Known bug. If setup fails to find git dir and somebody (plenty of them in fact) calls get_git_dir(), we automtaically assume git dir is ".git". > Is Git more aggressive about auto-creating the directory for lockfiles > on Windows? I tried the exact recipe you gave in the linked thread, just > to be sure, but I couldn't replicate it. If .git is created before lockfile code, then the lock should be successfully created. The fix in check_write() fixes it for Johannes, so it must be something between // if (action == ACTION_SET) {... check_write(); check_argc(argc, 2, 2); value = normalize_value(argv[0], argv[1]); ret = git_config_set_in_file(given_config_source.file, argv[0], value); I don't see where mkdir() can be called either. Johannes, maybe you can force a crash in mingw_mkdir to pinpoint this code? Just in case the bug is outside config code. -- Duy -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html