What is the outcome of executing this command?
git clone ssh:/john@example.com/path/to/my-project.git
- creates a local copy of a repository called “my-project”
- initiates a new Git repository called “my-project”
- creates a copy of a branch called “my-project”
- creates a new branch called “my-project”
Answer(s): A
Reference:
https://www.atlassian.com/git/tutorials/setting-up-a-repository/git-clone
Reveal Solution Next Question