Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

I want to upload my code in newly created repository on bit bucket. Please provide the steps ?

Ruchi Desai August 13, 2019

I want to upload my code in newly created repository on bit bucket. Please provide the steps ?

1 comment

DPKJ
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 13, 2019

Here you go,

  • Install GIT (version control) on your local system
  • Follow following commands
$ 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 

Comment

Log in or Sign up to comment
TAGS
AUG Leaders

Atlassian Community Events