SSH syntax

To push into the Helix Server

To push a repo:

$ git push git@ConnectorHost:graphDepotName/repoName

To push all branches:

git push git@ConnectorHost:graphDepotName/repoName --all

To push all tags:

git push git@ConnectorHost:graphDepotName/repoName --tags

To push all branches and all tags:

git push git@ConnectorHost:graphDepotName/repoName --follow-tags

Note

The following syntax with "*:*" is not supported:

git push git@ConnectorHost:graphDepotName/repoName "*:*"

To clone from the Helix Server

To clone a repo:

$ git clone git@ConnectorHost:graphDepotName/repoName

To pull from the Helix Server

To pull a repo:

$ git pull git@ConnectorHost:graphDepotName/repoName