I have created a new repo in bitbucket. I created a file in master branch of my newly created repo. Now I have created another branch "test" in my repo and added files in it, now I want to share it with my peers. How can I share it with my peers?
Thanks
Hey rahilrafiq,
I don't think your peers will be able to clone the branch directly. Instead, they should pull the entire repo with `git clone` and then switch to the branch you created with `git checkout branch-name-you-created`.
You can read more about the `git checkout` command here: https://www.atlassian.com/git/tutorials/using-branches/git-checkout
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.