I recently switched back from Archlinux to Gentoo and now i have some problems regarding git aliases. My gitconfig does look like this:
Code: Select all
...
[alias]
st = status -s
co = checkout
br = branch
ci = commit
...
My USE-flags for git:$ git st
fatal: cannot exec 'git-st': Permission denied
Maybe my USE-flags are wrong, I dont know :-/.bash-completion blksha1 curl cvs iconv perl threads tk webdav -cgi -doc -emacs -gtk -ppcsha1 -subversion -xinetd
EDIT SOLUTION:
______________
see http://stackoverflow.com/questions/7997 ... nied-error
one has to add permissions to all (?) binary directories, specifically gentoo:
sudo chmod +x /usr/games/bin/
and then its working

