Am 1/30/2011 21:34, schrieb Libor Pechacek: > It is possible to break your repository config by creating an invalid key. The > config parser in turn chokes on it. > > $ git init > Initialized empty Git repository in /tmp/gittest/.git/ > $ git config .foo false > $ git config .foo > fatal: bad config file line 6 in .git/config Just a nit: Your example is misleading because it "only" shows that if you shove in junk, and ask for junk, you get breakage. However, the breakage is much more serious, and you could have demonstrated it, if you had written your example like this: $ git config .foo false $ git config user.email fatal: bad config file line 6 in .git/config > + test_must_fail git config . && > + test_must_fail git config .foo && > + test_must_fail git config foo. && > + test_must_fail git config .foo. && Not a nit: These tests only show that 'git config' cannot be asked for junk, but they do not show that you cannot insert junk into the config file anymore using 'git config'. -- Hannes -- 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