[% locale.maketext('Use this interface to create new repositories or clone existing remote repositories.') %]
[% locale.maketext('To add an existing repository to the list of [asis,cPanel]-managed repositories, select that repository path when you create the repository.') %]
[% locale.maketext('The system will automatically add and configure the repository.') %]
[% locale.maketext('In order to clone private repositories, advanced users should preconfigure access.') %]
[% locale.maketext('For more information, read our [output,url,_1,documentation,target,_2,id,_3].','https://go.cpanel.net/PrivateRepositories', 'gitVersionControlPrivateRepo', "lnkGitVersionDocs") %]
[% locale.maketext("Run these commands on your local computer.") %]
[% locale.maketext("For an existing project …") %]
[% locale.maketext("Step 1:") %][% locale.maketext("Navigate to your repository’s directory:") %]
cd /path/to/your/repo
[% locale.maketext("Step 2:") %]
[% locale.maketext("Configure your local repository to push to the [asis,cPanel]-hosted repository:") %]
git remote add origin {{repository.summary.remoteURL}}
git push -u origin master
git remote add origin {{repository.summary.remoteURL}}
[% locale.maketext("To start a new project …") %]
[% locale.maketext("Step 1:") %][% locale.maketext("Clone the [asis,cPanel]-hosted repository to your local computer and navigate to its directory:") %]
git clone {{repository.summary.remoteURL}}
cd {{repository.summary.directoryName}}
git clone {{repository.summary.remoteURL}}
cd {{repository.summary.directoryName}}