You are on page 1of 3

BITBUCKET Commands

Install git bash from


https://git-scm.com/downloads

Open the bitbucket website and click on clone the repository


Copy the clone address

Right click on desktop or any folder and select the “Open the git bash here”

Paste the following commands in terminal


1. git clone https://Tanzeela_shakeel@bitbucket.org/csi-web-dev/iiot-firmware.git

2. git status
(If you are in master branch , create new branch using checkout command)
3. git checkout -b branch_name
Go to creating branch by
4. git branch
Do your activities here like folder and files copy and paste

5. git add.
(it add all changes in ur branch)
6. git status

7. git config --global user.email "you@example.com"

8. git commit -m "message here"

9. git push origin branch_name

Pull Request
● Goto the bitbucket website and click on pull request
● click on branch name or source and destination
● select the person
● create

Screen shot

You might also like