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 :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.