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
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
You cannot directly pull from
git gui
, but given than apull
is afetch
followed by amerge
, you can fetch the remote (in the remote menu andfetch from
), and then merge the remote branch into yours (Merge menu andLocal merge
, selecttracking branch
).