Reputation: 116
My first project is a rails app written in Cloud9 and pushed to bit bucket and heroku in production.
How do I make an exact clone of this project so that I can rename it and begin working on a second project?
Upvotes: 0
Views: 296
Reputation: 1282
As per this tutorial you should:
Navigate to the repository in Bitbucket.
Click the Clone button.
Copy the clone command (either the SSH format or the HTTPS).
If you are using the SSH protocol, ensure sure your public key is in Bitbucket and loaded on the local system to which you are cloning.
Launch a terminal window.
Change to the local directory where you want to clone your repository.
Paste the command you copied from Bitbucket, for example:
$ git clone ssh://[email protected]:7999/PROJ/repo.git
Upvotes: 1