I want to use git/bitbucket for a new project that already exists. I proceeded as follows (under Windows if that matters):
- create a new folder
- open with Git Bash
- git init
- git clone "repository here, from bitbucket.org"
- git pull
I get the error: $ git pull There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details.
So from my understanding, I should be able to pull the existing repository to my local disk, make changes to the files, and then push the changes to git. Could someone tell me which commands are needed to achieve this? The only branch we have is: master, tagged with "main" and "development". This is not a big project, but we want to use git for version control.
Thanks for any hints.