Gregory Haskins wrote:
> Is there a way I can see a list of commits that are related only to KVM
> since 2.6.22 without seeing all the stuff from upstream?
>
>   

If 'kvm' is the remote referencing kvm.git and 'origin' references -linus,

  git log kvm/master ^origin/master

will show all commits into master branch, and

  git log kvm/for-linus ^origin/master

will show pending kvm-specific commits.

If you're just interested in upstream, do

  git log v2.6.22..origin/master drivers/kvm/


-- 
error compiling committee.c: too many arguments to function


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel

Reply via email to