Unlike Subversion, Git makes a whole copy of the repository and
history, so there's no need to run a special import.
You can put an existing Git
repository into TaraVault by running:
git remote add origin [TaraVault Git URL]
(e.g. git remote add origin https://git6.taravault.net/inflectratest3/sampleapplicationone/git/ )
This will add a remote repository with the friendly name of 'origin', then:
git push origin --all
to push all the branches into the new repository. You can change 'origin' to be whatever you want, e.g. "taravault"
That's all there is to it!