gcloud_source_repos_clone (1)
NAME
- gcloud source repos clone - clone a cloud source repository
SYNOPSIS
-
gcloud source repos clone REPOSITORY_NAME [DIRECTORY_NAME] [--dry-run] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Each Google Cloud project can have zero or more git repositories associated with it. To see the available repositories, run:
- $ gcloud source repos list
The clone operation configures the local clone to use your gcloud credentials to authenticate future git operations. This command emits a warning if the cloud source repository is a mirror.
POSITIONAL ARGUMENTS
-
- REPOSITORY_NAME
-
Name of the repository.
- [DIRECTORY_NAME]
-
Directory name for the cloned repo. Defaults to the repository name.
FLAGS
-
- --dry-run
-
If provided, prints the command that would be run to standard out instead of
executing it.
GCLOUD WIDE FLAGS
These flags are available to all commands: --account, --configuration, --flags-file, --flatten, --format, --help, --log-http, --project, --quiet, --trace-token, --user-output-enabled, --verbosity. Run $ gcloud help for details.
EXAMPLES
The example commands below show a sample workflow.
- $ gcloud init $ gcloud source repos clone REPOSITORY_NAME DIRECTORY_NAME $ cd DIRECTORY_NAME $ git push origin master
NOTES
These variants are also available:
- $ gcloud alpha source repos clone $ gcloud beta source repos clone