HTTPS syntax
To push into the Helix Server
To push a repo:
$ git push https://ConnectorHost/graphDepotName/repoName
To push all branches:
git push https://ConnectorHost/graphDepotName/repoName --all
To push all tags:
git push https://ConnectorHost/graphDepotName/repoName --tags
To push all branches and all tags:
git push https://ConnectorHost/graphDepotName/repoName --follow-tags
The following syntax with "*:*" is not supported:
git push https://ConnectorHost/graphDepotName/repoName "*:*"
To clone from the Helix Server
To clone a repo from the Helix Server using HTTPS, run the following command:
$ git clone https://ConnectorHost/graphDepotName/repoName
To pull from the Helix Server
To pull a repo from the Helix Server using HTTPS, run the following command:
$ git pull https://ConnectorHost/graphDepotName/repoName