Git Management
Associating your local repo to a repo in third party Git repository, say Bitbucket.
Step 1: Switch to your repository's directory
Step 2: Connect your existing repository to Bitbucket
List your existing remotes in order to get the name of the remote you want to change.
cd /path/to/your/repoStep 2: Connect your existing repository to Bitbucket
git remote add origin git@bitbucket.org:username/your-repo-name.git
// ... Series of commits...
git push -u origin masterList your existing remotes in order to get the name of the remote you want to change.
git remote -v