Hi, On Tue, Dec 22, 2009 at 4:59 PM, pedrojo [via GitX] <[email protected]> wrote: > Hey friends, I'm new in gitX and I request me if is possible view the > changes in a remote repository before do git pull. I explain you: In my > programmer team we are 3 persons and if I change something and up tihs in > the remote repository the others users like view this changes before make > pull for that they can view if this changes are well before overwrite the > version that they had.
Yes. The way to do this is to do a 'git fetch'. You can then inspect the remote for any changes, or do something like 'git diff master...origin/master' to see the changes that would get merged in. If you want to proceed with the merge, you can do a 'git pull', or just a 'git merge origin/master' -- View this message in context: http://n2.nabble.com/GitX-view-changes-in-remote-repository-tp4204237p4204290.html Sent from the GitX mailing list archive at Nabble.com.
