I am trying to use the helper script to create a new GIT project. When executing from the command line:
/usr/local/bin/trac-initproject git foobar
I am getting the following error:
/usr/local/bin/trac-initproject: line 75: git-init: command not found
Looking at the script, I see line 75 is:
git-init
I try to locate the git-init script on my Trac appliance by running:
find / | grep git-init and I find it in /usr/lib/git-core/git-init
So I modified the trac-initproject script line 75 to include /usr/lib/git-core/git-init and re-run the command trac-initproject git foobar and that seems to work
Did I do something along the way to break the ability to locat the git-init command, or is this a known issue?
GIT: Line 75: git-init: command not found
Hello,
I am trying to use the helper script to create a new GIT project. When executing from the command line: