On Fri, Nov 04, 2011 at 12:09:07PM +0400, Алексей Данченков wrote: > $ git co -b newbranch > $ git co oldbranch > > results in "fatal: cannot exec 'git-co': Permission denied" error. Git will try commands in your PATH before aliases. So you are running into a permissions problem with a "git-co" in your PATH. Or more likely, there is an inaccessible directory of your PATH (and we get the same error code from execve whether it is the directory or the file itself which lacks permission). Try "git foobar" and I suspect you will see the same thing (it doesn't matter that you have no foobar alias; we never get past the "try to exec it" stage). If you are on Linux, try: strace -f -e execve git foobar to see the the problematic entry that is returning EACCES. Or look through your $PATH manually. -Peff -- 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