I was able to configure diffusion to host a git repository, thanks to detailed guide.
For a phabricator hosted repository; I get the clone link as follows;
git clone ssh://phabricator.example.com/diffusion/HW/hello-world.git
which does not work, I do get it to work using following clone url;
git clone git@phabricator.example.com:diffusion/HW/hello-world
I would like to publish the same in git clone link on phabricator;
git clone git@phabricator.example.com:diffusion/HW/hello-world.git # should get cloned to a dir named hello-world
How do I make these changes?