Takor
Takor

Reputation: 277

How I can pull the new code from bitbucket?

I am new at coding. My team has sent a "pull request" to my bitbucket repository to merge their code.

I merged the code to the master branch and I ran git pull on my local machine. After that, I checked my code and the git repository in my local device is still the same.

How can I get the changes from master to my local device?

Upvotes: 1

Views: 8315

Answers (1)

huzefa biyawarwala
huzefa biyawarwala

Reputation: 657

Check the modified files in the pull request that your team has sent you. Verify the same files in your local machine. You will see the lines added or modified in Green color on Bitbucket.

You will see the changes that have been made by your team. As you have already done git pull, you will have the changes that your team have made.

Upvotes: 2

Related Questions