I'm new to git
, and have a server that I have inherited.
I have 2 remote repos that seem to have the same setup. The first one is used for productA and can be accessed remotely as follows:
git clone git://server/productA.git productA
touch newfile
git add newfile
git commit -a
git push
This is where I fail. productA works and productB fails with the following message:
fatal: remote error: access denied or repository not exported: /productB.git
I have looked on the server and can't seem to find anything that sticks out as being different between the repositories. What am I missing?