Hi everyone
First I tried to sync my local repo with online bitbucket but I don't know that should i add git clone before URL as well or I just have to add URL( git remote add origin <URL>) or
( git remote add origin git clone <URL>)
Second when i tried to pushed the content of my local repository to online git repository its showing errors with some hints like:
git pull before pushing again
see the note about fast forward
@[deleted] ,
Sorry for the delayed answer.
If it is a new repository without any content these steps should help:
Perform these steps inside the project directory
git init
git add --all
git commit -m "Message about your commit"
git remote add origin <the URL for your Bitbucket repository>.
For e.g. git@bitbucket.org:example_workspace/example_repo_name.gitgit push -u origin master
In case of an existing Bitbucket Cloud repository these tutorials will answer your questions:
https://confluence.atlassian.com/bitbucket/copy-your-git-repository-and-add-files-746520876.html
https://www.youtube.com/watch?v=lYkghPud4dA
Cheers :)
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.