Adrien Neveu
Adrien Neveu

Reputation: 827

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:

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!

Upvotes: 3

Views: 20092

Answers (1)

Anshul Goyal
Anshul Goyal

Reputation: 76887

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/

Upvotes: 11

Related Questions