Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Update a local repo with Git (Bitbucket)

I switched recently to a Bitbucket/git system to work on my code, and i'm having some troubles understanding.

Here what I did:

  • Created a repo on Bitbucket, pushed all my code into it, from my computer A.
  • On my computer B, I cloned this code and worked on it. I pushed every modifications on Bitbucket.

But now, it may be very simple, but I don't know how I get back my modifications I push (the latest commits) on my computer A...

I tried forking as written on the doc, but it's creating another repo... I don't get it :(

Thank you for replying!

like image 587
Adrien Neveu Avatar asked Nov 18 '25 06:11

Adrien Neveu


1 Answers

You need to pull your changes in your local repo on computer A. Run the following (assuming your branch name is master)

git pull origin master

For a basic guide to git, check out http://rogerdudler.github.io/git-guide/

like image 75
Anshul Goyal Avatar answered Nov 20 '25 21:11

Anshul Goyal