I want to upload my code in newly created repository on bit bucket. Please provide the steps ?
Here you go,
$ cd project_dir # move to your project directory$ git init # intialize new git repository$ git add . # add all files to git$ git commit -m "First commit" # commit your code$ git remote add origin <bitbucket_repo_URL> # set bitbucket as your remote$ git push -u origin --all # push code to repository
This link will help you learn more, also you need to have some knowledge of GIT.
https://confluence.atlassian.com/bitbucket/repository-setup-877174034.html