On Sun, Aug 07, 2011 at 02:16:57PM -0700, Rusty Dog Ink wrote: > git add --force /Users/chris/Sites/mattSchubert/public/css/browserfix.css => "Crappy Error" > Yields this error. > fatal: '/Users/chris/Sites/mattSchubert/public/css/browserfix.css' is outside repository We can't say if this is reasonable or not without knowing more. Which directory are you in? Which git repository do you expect to be found? Which repository does git actually find (try "git rev-parse --git-dir")? Do you have GIT_WORK_TREE set in the environment, or core.worktree set in your config? > This command does gives the same error. > git add --force /public/css/browserfix.css => "Same error" > But this command, works. Why? > git add --force public/css/browserfix.css => "Works yeah" The top one seems nonsensical, unless your git repository is at one of: /.git /public/.git /public/css/.git The bottom one makes sense; you are looking at files in the current directory, which is going to be inside your repository (unless you are setting some of worktree variables I mentioned above). Are you trying to do something clever with symlinks to /public? If so, show us. -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