() Stefan Reichör <[EMAIL PROTECTED]> () Thu, 03 Jul 2008 21:41:23 +0200
When I look at the log, I get the following: [log from branch "master"] So it seems that i can't find your changes... Sorry, i did not include clear instructions. Some background: I left the branch "master" alone (it is a faithful clone of git://git.hcoop.net/git/mwolson/emacs/dvc.git, w/o modification), and made all my changes on branches whose names begin with "ttn-". (Perhaps that's not recommended best-practice, i'm not sure. mwolson: Any tips for the publishing-with-Git newbie?) Anyway, to extract a patch, for which mangaging branches and working directory are unnecessary, you can do: git diff bzr-revno-442 ttn-442-whitespace-1 The blurb at <http://www.gnuvola.org/wip/> includes branch info (i.e., "Branch: ttn-janitor-simple"), so in this case (but not generally -- see below), you could also do: git diff master origin/ttn-janitor-simple In these command lines, "master" and "origin/ttn-janitor-simple" refer to branches, while "bzr-revno-442" and "ttn-442-whitespace-1" refer to tags. Generally you will want to diff tags, as branches can (and will) be updated in the future, while tags are fixed. Lastly, to see all tags: git tag and to see all branches: git branch -a thi _______________________________________________ Dvc-dev mailing list [email protected] https://mail.gna.org/listinfo/dvc-dev
