I'm new to git. I'm using bitbucket with sourcetree client. I've cloned the repository from bitbucket in the sourcetree ,and then I wanted to create a Develop branch from Master. The thing is : there isn't any master branch. I've tried committing some text file , and then I was able to create that Develop branch , but I still don't see master branch in BitBucket ,so I can't create pull requests from the Develop branch to master...
What have I done wrong? Thanks
master
is just a name for the usual default branch. But it doesn’t need to be called that way. If you dogit branch -r
you can see what branches exist on your remote, so you know which branch you could create a pull request for.If you really want a master branch, you could just create a new branch.