Getting Started With Bitbucket
Getting Started With Bitbucket
(Python/Django Development)
www.bispsolutions.com
Table of Contents
Why we use bitbucket ............................................................................................................................................................. 3
Workflow diagram ................................................................................................................................................................... 3
Objective ................................................................................................................................................................................... 4
Solutions ................................................................................................................................................................................... 4
www.bispsolutions.com
Why we use bitbucket
Bitbucket is a robust revision control system that greatly aids developers in their day-to-day
tasks. If you’re part of a development team, you’re likely spending much of your time keeping track of
collaborative projects. Bit bucket makes the process easier and more organized. To understand what it
can do for you, let’s have a look at a list at some of its features:
Workflow diagram
www.bispsolutions.com
Objective
The main objective of this project is that to store data in to a safe place. Where all team
Solutions
Note: In this document we explain step by step Integration between Python/flask and bit bucket to
upload project.
Link: https://git-scm.com/
a) We can create an account on git hub to provide necessary details. It’s totally free of cost
www.bispsolutions.com
b) Once account is created you
Once you have successfully logged in you can see the following screen where you can manage
your repository
You can see the following screen once you create a repository
www.bispsolutions.com
How to upload project
$ git init
Step 4: Add the files in your new local repository. This stages them for the first commit.
$ git add .
Step 5: Commit the files that you've staged in your local repository.
Step 6: At the top of your GitHub repository's Quick Setup page, click to copy the remote repository
URL.
Step 7: In the Command prompt, add the URL for the remote repository where your local repository will
be pushed.
$ git remote add origin remote repository URL
# Sets the new remote
$ git remote -v
# Verifies the new remote URL
Step 8: Push the changes in your local repository to GitHub.
www.bispsolutions.com
$ git push origin master
# Pushes the changes in your local repository up to the remote repository you specified as the origin
Once you follow all the step. Congrates you have successfully uploaded your project on GitHub. Your
Link: https://bitbucket.org/account/signup/
Step 2: Once you have successfully registered. Log in with valid credentials.
www.bispsolutions.com
Step 4: click on the Repositories..you see a screen something like this.
Step 7 : You are successfully uploaded your gihub project on bitbucket, your project directory look like this
www.bispsolutions.com
Final outcome
www.bispsolutions.com