On 7/10/13 12:11 , Shannon Watson wrote: > That must not be what i'm looking for. The latest entry is -- Chris Radek > <[email protected]> Sun, 03 Mar 2013 17:07:57 -0600 which does not show the > changes i received when i did a "git pull" yesterday. Where is the log that > shows what was updated then?
Ah, maybe you're looking for "git log"? Or the graphical view of the same history, "gitk"? When you run "git pull" it'll print the commits that it fetched for each branch, like this: > From git://git.linuxcnc.org/git/linuxcnc > 61ebd82..d5138ff master -> origin/master You can see what changed in the commits it fetched by running a command like this (substitute the actual commit range from the "git pull" output): git log 61ebd82..d5138ff -- Sebastian Kuzminsky ------------------------------------------------------------------------------ See everything from the browser to the database with AppDynamics Get end-to-end visibility with application monitoring from AppDynamics Isolate bottlenecks and diagnose root cause in seconds. Start your free trial of AppDynamics Pro today! http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk _______________________________________________ Emc-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/emc-users
