I\'m working on a team with a few developers using git on BitBucket. We are all working on a dev branch, not pushing to master until a release.
dev
master
I have done below steps. finally it's working fine.
1) git init
2) git status (for checking status)
3) git add . (add all the change file (.))
4) git commit -m ""
""
5) git remote add origin ""
6) git pull --allow-unrelated-histories "" master
7) git push -u "" master