Just updated my KHGtG to include the latest goodies available in git-core, the Linux kernel standard SCM tool: http://linux.yyz.us/git-howto.html Several changes in git-core have made working with git a lot easier, so be sure to re-familiarize yourself with the development process. Comments, corrections, and notes of omission welcome. This document mainly reflects my typical day-to-day git activities, and may not be very applicable outside of kernel work. Jeff -
On Thu, Sep 29, 2005 at 07:03:05AM -0400, Jeff Garzik wrote: > > Just updated my KHGtG to include the latest goodies available in > git-core, the Linux kernel standard SCM tool: > > http://linux.yyz.us/git-howto.html > > Several changes in git-core have made working with git a lot easier, so > be sure to re-familiarize yourself with the development process. > > Comments, corrections, and notes of omission welcome. This document > mainly reflects my typical day-to-day git activities, and may not be > very applicable outside of kernel work. You wrote.. $ git clone rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git linux-2.6 $ cd linux-2.6 $ rsync -a --verbose --stats --progress \ rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git/ \ .git/ Could be just.. $ git clone rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git linux-2.6 $ cd linux-2.6 $ git pull Likewise, in the next section, git pull doesn't need an argument if pulling from the repo it cloned. Dave -
Nope. It intentionally includes the manual rsync because clone/pull doesn't seem to grab tags. Or at least last time I checked... Jeff -
i just used the instructions at the bottom of your web page to grab new tags, and it completely wiped all my Stacked Git metadata. (fortunately i was trying this in a test repository, and it will be simple to recover the missing files). so, this is probably something that should have a warning, or maybe you might consider providing an example that won't wipe out existing files and directories under .git/ ...
clone does (or should), fetch (and hence pull) does not automatically. Running the following one-liner every once in a while would sync your set of tags with Linus: git fetch origin `git-ls-remote --tags origin | sed -ne 's|^.*refs/tags/|tag |p'` -
Thanks for all the comments. I just updated the KHGtG with the feedback I received. Go to http://linux.yyz.us/git-howto.html and click reload. Continued criticism^H^H^Hcomments welcome! Two items of note: that's way too long and convoluted to deal with. Once the 'git fetch --tags' changes make it into the official repository (are they there already?), I'll remove all the remaining direct references to running rsync. 2) What is the easiest way to obtain a list of changes present in repository B, that are not present in repository A? I used to use git-changes-script [hacked cg-log script] for this: $ cd /repo/netdev-2.6 $ git-changes-script -L ../linux-2.6 would display all changes in /repo/netdev-2.6 which are not present in /repo/linux-2.6. This is similar to 'git log master..HEAD', except for repositories rather than branches. Jeff -
Jeff Garzik <jgarzik@pobox.com> : The basic tasks make no use of git-whatchanged. Even if it is a CVSism, it is quite handful to retrieve the history of the patchsets by aiming at a specific file. -- Ueimor -
- To know the current branch, "git branch" is enough (the one '*'-ed) - rsync(1) a repository is dangerous, it might catch it in the middle of a update and give you an incomplete/messed up copy. Repeat rsync until no change, perhaps? - I understand "git checkout -f" blows away any local changes, no questions asked. Not very nice to suggest that to a newbie... Thanks for the docu! -- Dr. Horst H. von Brand User #22616 counter.li.org Departamento de Informatica Fono: +56 32 654431 Universidad Tecnica Federico Santa Maria +56 32 654239 Casilla 110-V, Valparaiso, Chile Fax: +56 32 797513 -
Usually that's just unlucky. I have caught kernel.org in the middle of I constantly run into problems if I -do not- use the "-f" flag. I habitually use it at all times, now. Thanks, Jeff -
FYI, the rsync command to get the tags blows away .git/branches/origin, so on the next "git pull", git will tell you "Where do you want to fetch from today?". In the mean time, better make it two separate rsync commands (sorry for the long lines): rsync -a --delete --verbose --stats --progress \ rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git/tags/ \ .git/tags/ rsync -a --delete --verbose --stats --progress \ rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git/heads/ \ .git/heads/ Erik -- +-- Erik Mouw -- www.harddisk-recovery.com -- +31 70 370 12 90 -- | Lab address: Delftechpark 26, 2628 XH, Delft, The Netherlands -
Agreed, though I always run 'git pull $url' each time, so I never noticed this. Since git clone pulls the tags, I have eliminated the first rsync completely. Jeff -
The error is still there. oliver@oenone:~/linux-2.6> git checkout -f master usage: read-tree (<sha> | -m <sha1> [<sha2> <sha3>]) Regards Oliver -
Something's wrong with your installation, not the instructions. Works fine here. Jeff -
Right , you must have a corrupted copy of the git repo. Do the initial cloning of the linux repository again, and then retry the git checkout. -
Sounds like a thinly veiled threat and/or very effective prodding ;-). It is not there yet only because I simply have not got around to it, but it will happen before 0.99.8. I suspect the version Linus posted has a funny interaction with 'git-pull'; 'git pull --tags' by mistake, or intentionally to file a bug report to annoy me ;-), would create an Octopus out I think I still have the copy you sent to the list. If you do not mind me placing in the master branch just holler -- better yet please send a patch with commit log and signoff to add the latest, and I will apply it. -jc -
Hey, even more impressive is "git pull --all", which will happily try to create an octopus of every single ref available at the other end. Now, I think that octopus merges in _general_ are likely to be driver error, and that it might make sense to have a separate flag to enable them in the first place. That would solve the confusion.. So then you could do git pull --all --octopus xyzzy if you _really_ meant to do that. Linus -
It's archived here: http://www.kernel.org/pub/linux/kernel/people/jgarzik/git-changes-script but it needs a git expert (read: not me :)) to fix it up for the very latest git-core stuff. Regards, Jeff -
That is not actually the same. "git pull" for example will not download Now that is definitely correct. (-: Best regards, Anton -- Anton Altaparmakov <aia21 at cam.ac.uk> (replace at with @) Unix Support, Computing Service, University of Cambridge, CB2 3QH, UK Linux NTFS maintainer / IRC: #ntfs on irc.freenode.net WWW: http://linux-ntfs.sf.net/ & http://www-stu.christs.cam.ac.uk/~aia21/ -
On Thu, Sep 29, 2005 at 09:07:29PM +0100, Anton Altaparmakov wrote: > > $ git clone rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git linux-2.6 > > $ cd linux-2.6 > > $ rsync -a --verbose --stats --progress \ > > rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git/ \ > > .git/ > > > > Could be just.. > > > > $ git clone rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git linux-2.6 > > $ cd linux-2.6 > > $ git pull > > That is not actually the same. "git pull" for example will not download > Linus' tags whilst the rsync would get everything. Ah. I didn't know this. Thanks. Hmm, it'd be nice to have a shorthand 'not have to type the url, pull everything'. Something like 'git pull all'. Dave -
Something like this?
Except it's called "git fetch --all", and it's obviously totally untested.
Linus
--
diff --git a/git-fetch.sh b/git-fetch.sh
--- a/git-fetch.sh
+++ b/git-fetch.sh
@@ -5,6 +5,8 @@
_x40='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
_x40="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40"
+all=
+tags=
append=
force=
update_head_ok=
@@ -17,6 +19,12 @@ do
-f|--f|--fo|--for|--forc|--force)
force=t
;;
+ --tags)
+ tags=t
+ ;;
+ --all)
+ all=t
+ ;;
-u|--u|--up|--upd|--upda|--updat|--update|--update-|--update-h|\
--update-he|--update-hea|--update-head|--update-head-|\
--update-head-o|--update-head-ok)
@@ -158,7 +166,16 @@ case "$update_head_ok" in
;;
esac
-for ref in $(get_remote_refs_for_fetch "$@")
+taglist=
+if [ "$tags$all" ]; then
+ pattern='/refs\/tags/'
+ if [ "$all" ]; then
+ pattern='/refs/'
+ fi
+ taglist=$(git-ls-remote "$remote" | awk "$pattern"' { print $2":"$2 }')
+fi
+
+for ref in $(get_remote_refs_for_fetch "$@" $taglist)
do
refs="$refs $ref"
-Gaah. Using a new pine version, and it is back to corrupting whitespace. Damn all mailer writers. Do they think email is just for grandma? Linus -
Ok, disabling "text flowing" seems to have fixed it. It still leaves empty
spaces at the end of lines when doing normal word-wrapping in the editor
(and then seems to use those empty spaces as a "marker" for flowing), but
that's at least just a small silly detail.
So how about this patch now? With it you can do
git fetch --tags <linus-kernel-repo>
and it should fetch all my tags automatically.
Linus
---
diff --git a/git-fetch.sh b/git-fetch.sh
--- a/git-fetch.sh
+++ b/git-fetch.sh
@@ -5,6 +5,8 @@
_x40='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
_x40="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40"
+all=
+tags=
append=
force=
update_head_ok=
@@ -17,6 +19,12 @@ do
-f|--f|--fo|--for|--forc|--force)
force=t
;;
+ --tags)
+ tags=t
+ ;;
+ --all)
+ all=t
+ ;;
-u|--u|--up|--upd|--upda|--updat|--update|--update-|--update-h|\
--update-he|--update-hea|--update-head|--update-head-|\
--update-head-o|--update-head-ok)
@@ -158,7 +166,16 @@ case "$update_head_ok" in
;;
esac
-for ref in $(get_remote_refs_for_fetch "$@")
+taglist=
+if [ "$tags$all" ]; then
+ pattern='/refs\/tags/'
+ if [ "$all" ]; then
+ pattern='/refs/'
+ fi
+ taglist=$(git-ls-remote "$remote" | awk "$pattern"' { print $2":"$2 }')
+fi
+
+for ref in $(get_remote_refs_for_fetch "$@" $taglist)
do
refs="$refs $ref"
-On Thu, Sep 29, 2005 at 02:35:15PM -0700, Linus Torvalds wrote: > > > On Thu, 29 Sep 2005, Linus Torvalds wrote: > > > > Gaah. Using a new pine version, and it is back to corrupting whitespace. > > Ok, disabling "text flowing" seems to have fixed it. It still leaves empty > spaces at the end of lines when doing normal word-wrapping in the editor > (and then seems to use those empty spaces as a "marker" for flowing), but > that's at least just a small silly detail. > > So how about this patch now? With it you can do > > git fetch --tags <linus-kernel-repo> > > and it should fetch all my tags automatically. Seems to work. I blew away git/refs/tags/v2.6.13* and git fetch --tags fetched them all back just fine. Dave -
On Thu, Sep 29, 2005 at 02:26:42PM -0700, Linus Torvalds wrote: > On Thu, 29 Sep 2005, Linus Torvalds wrote: > > > >Something like this? > > Gaah. Using a new pine version, and it is back to corrupting whitespace. > > Damn all mailer writers. Do they think email is just for grandma? What I find amusing is that it was a patch rejection mail from you *years* back (circa 2000 iirc), telling me my pine corrupted whitespace, that made me switch MUA ;-) All these years later, and it's still buggered ? Dave -
Actually, it seems better. It seems to be buggered by default, but it used to be that you had to actually recompile pine to make it behave. Now you can just disable "strip-whitespace-before-send" and _enable_ "quell-flowed-text" and those together seem to do the trick. No extra patches or recompiles necessary. So there's progress. Of course, pico is still pico. Which I find a bit sad: my editor of choise is still an improved version of uemacs, and pico actually comes from the same uemacs history, but has different key-bindings for just enough keys to be slightly confusing. Still, that shared history means that I find pico a lot more to my taste than just about any other emailer editor out there. It may have a few differences, but it has more things in common.. Linus -
Linus Torvalds <torvalds@osdl.org> wrote: Can I get a URL for the source for your editor? The one on kernel.org doesn't compile, and probably hasn't for a long time. [Yes, there is some (perverse) fun in telling people you use the very same editor than Linus Torvalds :-]> -- Dr. Horst H. von Brand User #22616 counter.li.org Departamento de Informatica Fono: +56 32 654431 Universidad Tecnica Federico Santa Maria +56 32 654239 Casilla 110-V, Valparaiso, Chile Fax: +56 32 797513 -
Oh, it compiles with trivial modifications. Not cleanly, but it works. I put my git repo on kernel.org:/pub/software/editors/uemacs/uemacs.git but it will take a moment to mirror out. The "readme" says non-commercial only, but I asked Daniel Lawrence if it was ok to include it in commercial distributions a long time ago, and he said yes. Sadly, I've lost that email, so I don't have any paper trail for The thing is, it's not a wonderful editor. It's small, and good enough, but I really wished somebody wrote something that handled UTF-8, for example. But I've got the keybindings hardcoded in my spine, so I can't ever change. Linus -
Gaah. You guys shamed me into actually trying to clean up the sources a bit. It's by no means done, but some of it is even sparse-clean now. I suspect there's a lot of it that still works mainly by luck than because it does anything right. Linus -
I'd been trying my hand at the original version. Need to merge my changes with yours... -- Dr. Horst H. von Brand User #22616 counter.li.org Departamento de Informatica Fono: +56 32 654431 Universidad Tecnica Federico Santa Maria +56 32 654239 Casilla 110-V, Valparaiso, Chile Fax: +56 32 797513 -
[ Sorry about the spam, most of you probably have never cared ] Heh, now that I got into cleaning things up, I've also been actually fixing things that have long irritated me, but the code was just too messy for me, and my level of care wasn't high enough to overcome. I fixed the "outputs binary data in the 128-159 range to the terminal" yesterday (which would quite possibly corrupt terminal state if trying to edit binary files), and today I added a "utf-8" mode. The utf-8 mode is purely about the _terminal_ being in UTF-8. The actual editor is still very much byte-char based, but now it understands 8-bit input that comes in UTF8-encoded, and can output things in UTF-8 format. (Since UTF-8 is basically always used with Unicode, and the 8-bit subset of Unicode is iso-8859-1 aka Latin1, this is probably _less_ international than the non-UTF8, but hey, what can I say? If you want more, you'd need to teach uemacs about actual UTF8 contents). The new "emacs.rc" will enable utf-8 mode automatically if $LANG contains the substring "UTF-8", since that _usually_ means that the terminal is in utf-8 mode. If it's wrong, you can add or delete the mode by hand (just like any global mode: Meta-X to add, Meta-Ctrl-X to delete). Basically, it means that you don't have to switch the whole terminal into latin1 just to use uemacs. Linus -
Wouldn't underneath pub/scm/ be more appropriate and gitweb Hmph. I vaguely recall in my distant past when I was still in school, I did my own Japanization of microEmacs. I wonder if yours share the same root -- I do not have the source of my version anymore so I have no way checking which ancient version I mucked with. -
Well, I don't actually have write permissions to anything there except for udner the kernel tree. Also, I suspect there aren't all that many uemacs users out there, and anybody who isn't already a uemacs user probably shouldn't pick it up. I don't think it has gotten any real development for the last ten years, and while it was arguably the best editor twenty years ago (not a lot of competition - what else worked on DOS, VMS and UNIX without being crazy and modal?) it's definitely showing its age. So since I already had a uemacs subdirectory, I just put the git archive It's based on 3.9e, with some fixes by Petri Kutvonen at Helsinki University. With various (slight) modernizations by yours truly (eg posix termios support rather than the old "termio" stuff). It _shouldn't_ be that hard to teach it about UTF-8, but every time I look at it I realize that there is a lot of stuff that should be improved. Converting it to K&R, getting rid of the things that made sense in the 80's but haven't made sense in ten years, re-indenting it (right now it's a strange mix of indentation styles).. And if you open a binary file with it, it will literally spew binary characters to the tty, and can seriously confuse it due to the control chars. Or if you have a really long line, it can SIGSEGV on you. Cute. But dammit, I'm not giving it up. Linus -
Why don't you enable "enable-alternate-editor-implicitly" and set editor = "your-editor-of-choice" in the pine config? It is integrated in a quite seamless way. Best regards, Anton -- Anton Altaparmakov <aia21 at cam.ac.uk> (replace at with @) Unix Support, Computing Service, University of Cambridge, CB2 3QH, UK Linux NTFS maintainer / IRC: #ntfs on irc.freenode.net WWW: http://linux-ntfs.sf.net/ & http://www-stu.christs.cam.ac.uk/~aia21/ -
Anybody interested in adding entry to SubmittingPatches MUA Specific Help section? -
Hi, Did I miss something? Straight from my local git directory: -- snip -- Pine ---- (Johannes Schindelin) I don't know how many people still use pine, but for those poor souls it may be good to mention that the quell-flowed-text is needed for recent versions. ... the "no-strip-whitespace-before-send" option, too. AFAIK it was introduced in 4.60. -- snap -- Hth, Dscho -
You think so? I don't find it that way. With an alternate editor you have to edit the headers separately, and things like postponing a message suddenly turns into a big deal, not just a trivial ^O. In fact, almost everything gets more involved. And pico _is_ pretty close to uemacs. Linus -
Well using vim as alternate editor a postpone turns into a "ZZ" followed by ^O which I don't think is such a big deal but in general I agree that it adds hassle. It is a shame that the text based headers do not appear I wouldn't know about that. Never used uemacs. I am a vim addict myself. (-; Best regards, Anton -- Anton Altaparmakov <aia21 at cam.ac.uk> (replace at with @) Unix Support, Computing Service, University of Cambridge, CB2 3QH, UK Linux NTFS maintainer / IRC: #ntfs on irc.freenode.net WWW: http://linux-ntfs.sf.net/ & http://www-stu.christs.cam.ac.uk/~aia21/ -
On Thu, Sep 29, 2005 at 02:26:42PM -0700, Linus Torvalds wrote: >=20 >=20 > On Thu, 29 Sep 2005, Linus Torvalds wrote: > >Something like this? >=20 > Gaah. Using a new pine version, and it is back to corrupting whitespace. >=20 > Damn all mailer writers. Do they think email is just for grandma? Of course - grandma uses pine, hackers use mutt ;) *hides* Best, Elfyn --=20 Elfyn McBratney Gentoo Developer/Perl Team Lead beu/irc.freenode.net http://dev.gentoo.org/~beu/ +------------O.o--------------------- http://dev.gentoo.org/~beu/pubkey.asc PGP Key ID: 0x69DF17AD PGP Key Fingerprint: DBD3 B756 ED58 B1B4 47B9 B3BD 8D41 E597 69DF 17AD
Unfortunately, following the instructions to the letter produces this: oliver@oenone:~/linux-2.6> git checkout usage: read-tree (<sha> | -m <sha1> [<sha2> <sha3>]) Regards Oliver -
Yeah. See if you still have a .git/HEADS that symlinks to a valid place or not...? jdl -
oliver@oenone:~/linux-2.6> ls -la .git/ insgesamt 14 drwxrwxr-x 6 oliver users 224 2005-09-29 21:06 . drwxr-xr-x 3 oliver users 72 2005-09-29 20:45 .. -rw-rw-r-- 1 oliver users 19 2005-05-02 01:02 description lrwxrwxrwx 1 oliver users 17 2005-09-29 21:06 HEAD -> refs/heads/master -rw------- 1 oliver users 32 2005-09-29 21:06 index drwxrwxr-x 2 oliver users 104 2005-09-11 21:41 info drwxr-xr-x 260 oliver users 6240 2005-09-29 19:05 objects drwxrwxr-x 4 oliver users 96 2005-05-02 02:15 refs drwxr-xr-x 2 oliver users 72 2005-09-29 21:05 remotes oliver@oenone:~/linux-2.6> ls -la .git/refs/ insgesamt 1 drwxrwxr-x 4 oliver users 96 2005-05-02 02:15 . drwxrwxr-x 6 oliver users 224 2005-09-29 21:06 .. drwxrwxr-x 2 oliver users 72 2005-09-29 19:05 heads drwxrwxr-x 2 oliver users 600 2005-09-20 05:02 tags oliver@oenone:~/linux-2.6> ls -la .git/refs/heads/ insgesamt 4 drwxrwxr-x 2 oliver users 72 2005-09-29 19:05 . drwxrwxr-x 4 oliver users 96 2005-05-02 02:15 .. -rw-rw-r-- 1 oliver users 41 2005-09-29 19:05 master oliver@oenone:~/linux-2.6> cat .git/refs/heads/master aa55a08687059aa169d10a313c41f238c2070488 Regards Oliver -
I wonder what that 32-byte small file called 'index' is doing there. If this is the kernel tree, its index file should weigh about 1.7MB if I recall correctly. -
32 bytes is what you get for an empty index (it's a 12-byte header, followed by a 20-byte SHA1 of the contents). In general, such an index file it should be 100% equivalent to not having an index file at all. Linus -
I have no idea, but the instructions as stated didn't work for me. Can you replicate that? Regards Oliver -
Can you update the date on that page to reflect your latest updates? I was digging around with git yesterday and had a few surprises... like checking out the kernel and being told I modified a bunch of files I never touched. - Dave -
The KHGtG page is updated to September 29, 2005. -- Don't be evil!!! -
Awesome! Thanks. :-) I'm looking at cogito and darcs-git for working with v9fs and other goodies. Dave -
| Chuck Ebbert | Why do so many machines need "noapic"? |
| Greg Kroah-Hartman | [PATCH 01/46] modules: fix module "notes" kobject leak |
| Greg Kroah-Hartman | [PATCH 002/196] Chinese: rephrase English introduction in HOWTO |
| Ingo Molnar | [git pull] x86 arch updates for v2.6.25 |
git: | |
| Andreas Ericsson | git integration with monodevelop |
| Wink Saville | Resolving conflicts |
| Boyd Lynn Gerber | git-svn-import or CVS import from local HD rather than remote. |
| Jon Smirl | ! [rejected] master -> master (non-fast forward) |
| GVG GVG | ssh_exchange_identification: Connection closed by remote host |
| Karel Kulhavy | OpenBSD sticker considered cool by a layman |
| BARDOU Pierre | OpenBGP load balancing between 2 ISP (multihoming) |
| Richard Stallman | Real men don't attack straw men |
| Jarek Poplawski | Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| Jesper Krogh | Re: NIU driver: Sun x8 Express Quad Gigabit Ethernet Adapter |
| Arjan van de Ven | Re: [GIT]: Networking |
| Larry McVoy | Re: tcp bw in 2.6 |
