Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how can I do a git pull in the gitg / gitx visual tool?

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

like image 476
Michael Durrant Avatar asked Sep 04 '11 12:09

Michael Durrant


1 Answers

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).

like image 58
CharlesB Avatar answered Oct 02 '22 14:10

CharlesB