I can do a push using gitg and push my code to the remote master branch but I can't see any option to do a git pull.

I am on Ubuntu 10 and 11

link|improve this question

80% accept rate
Your first two sentences are contradicting. »I can do a pull, but I can't see any option to pull« say what? – knittl Sep 4 '11 at 14:26
good point. I meant push in the first instance. I've updated the question. – Michael Durrant Sep 5 '11 at 9:44
feedback

2 Answers

up vote 2 down vote accepted

You cannot directly pull from git gui, but given than a pull is a fetch followed by a merge, you can fetch the remote (in the remote menu and fetch from), and then merge the remote branch into yours (Merge menu and Local merge, select tracking branch).

link|improve this answer
This sounds perfect! Unfortunately I cannot find the remote menu or fetch_from :( – Michael Durrant Sep 5 '11 at 12:24
Are you sure you're in the git gui? (File menu -> start Git Gui, or git gui from command line) The gitk doen't have this. – CharlesB Sep 5 '11 at 12:35
thanks CharlesB :) I don't find that in gitg on Ubuntu 11.04 but I am trying a download of 'cola git gui' to see if that helps... – Michael Durrant Sep 5 '11 at 13:34
Ahh yes, 'git gui' is a different tool from the 'gitg' that I have been using and once I downloaded it (again that's 'Cola git gui' for anyone searching). I will update your answer and also check it as the answer. – Michael Durrant Sep 5 '11 at 13:39
@MichaelDurrant: mmh sorry I thought you meant gitk – CharlesB Sep 5 '11 at 13:55
show 1 more comment
feedback

In gitg 0.2.4, you cannot pull directly, so you also fetch and merge:

  • fetch by going in the repository properties, select the remote repo and cli
  • display all branches of the remote, and merge the branch you want (origin/master most of the time) by right-clicking on the tip of the branch
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.