git mailing list

FromSubjectsort iconDate
Junio C Hamano Nov 9, 6:12 pm 2008
Junio C Hamano Nov 9, 6:12 pm 2008
Junio C Hamano Nov 9, 6:11 pm 2008
Jan
[PATCH] Documentation: git-svn: fix example for centralized ...
The example that tells users how to centralize the effort of the initial git svn clone operation doesn't work properly. It uses rebase but that only works if HEAD exists. This adds one extra command to create a somewhat sensible HEAD that should work in all cases. Signed-off-by: Jan Krüger <jk@jk.gs> --- I have a feeling this looks a bit ugly, but I can't think of a simpler solution (especially since we're not fetching the central repo's HEAD). Still, it's certainly better than a broken exa...
Nov 9, 6:00 pm 2008
Junio C Hamano
[ANNOUNCE] GIT 1.6.0.4
The latest maintenance release GIT 1.6.0.4 is available at the usual places: http://www.kernel.org/pub/software/scm/git/ git-1.6.0.4.tar.{gz,bz2} (source tarball) git-htmldocs-1.6.0.4.tar.{gz,bz2} (preformatted docs) git-manpages-1.6.0.4.tar.{gz,bz2} (preformatted docs) The RPM binary packages for a few architectures are also provided as courtesy. RPMS/$arch/git-*-1.6.0.4-1.fc9.$arch.rpm (RPM) Fixes since v1.6.0.3 -------------------- * 'git add -p' said "No changes" whe...
Nov 9, 2:07 pm 2008
Alexander Gavrilov
[PATCH (GIT-GUI)] git-gui: Request blame metadata in utf-8.
The blame builtin now supports automatic conversion of metadata encoding. By default it is converted to the character set specified by i18n.logoutputencoding. Since gui blame expects the data in utf-8, it is necessary to specify the desired encoding directly. An old version of the blame command will simply ignore the option. Signed-off-by: Alexander Gavrilov <angavrilov@gmail.com> --- lib/blame.tcl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/blame.tcl...
Nov 9, 11:53 am 2008
Alexander Gavrilov
[PATCH (GIT-GUI)] git-gui: Add the Show SSH Key item to the ...
The user might need to see the key before cloning a repository. This patch makes the relevant menu item available in the Select Repository/Clone dialog. Signed-off-by: Alexander Gavrilov <angavrilov@gmail.com> --- git-gui.sh | 20 +++++++++++--------- lib/choose_repository.tcl | 6 ++++++ 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/git-gui.sh b/git-gui.sh index 12b496b..cf9ef6e 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -999,6 +999,17 @@ citool ...
Nov 9, 11:51 am 2008
Alexander Gavrilov
[PATCH (GIT-GUI)] git-gui: Fix focus transition in the blame...
Now that the blame viewer has a search panel, it should be taken into account by the focus transition code. Otherwise showing a commit tip (by accidentally moving the mouse to the text frame) causes the focus to transfer away from the search field. Signed-off-by: Alexander Gavrilov <angavrilov@gmail.com> --- lib/blame.tcl | 16 ++++++++++++---- lib/search.tcl | 14 +++++++++++--- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/lib/blame.tcl b/lib/blame.tcl index 765...
Nov 9, 11:36 am 2008
Joe MacDonald
[PATCH] git send-email: add --body option for --compose
If the --compose option is specified, --body will allow you to specify a file that should be included in the message body when the editor starts up. Signed-off-by: Joe MacDonald <joe.macdonald@gmail.com> --- I use --compose with nearly all of my send-email bundles, but immediately after I enter the editor I read in the contents of another text file that contains boilerplate text. So I modified git-send-email.perl to take a new option --body, which takes a filename as an argument and append...
Nov 9, 11:29 am 2008
Caleb Cushing
force a merge conflict
is there any way to force a merge conflict? there are 2 projects which have basically diverged becoming incompatible, and both have updated since there common ancestry. I'm working slowing on merging them back together. in this case I have a dev branch and fork branch the fork is a copy of dev except I committed one of the files from the fork. I need to merge this file back into dev, but git thinks it's a fast forward, because it really is for git, in reality it isn't, both files have newer hist...
Nov 9, 11:09 am 2008
Deskin Miller
Re: force a merge conflict
I'm not sure a 'conflict' is what you want, based on what you say below; rather, it seems you simply want to force a 'merge commit', i.e. a commit with git merge --no-ff ? Hope that helps, Deskin Miller --
Nov 9, 2:39 pm 2008
Caleb Cushing
Re: force a merge conflict
I tried that but I don't see that it's any different than a fast forward in this scenario. Actually I don't see any difference between it and a fast-forward. -- Caleb Cushing --
Nov 9, 4:19 pm 2008
Deskin Miller
Re: force a merge conflict
Look at the results of 'git merge' and 'git merge --no-ff' in gitk. Or, compare the resultant sha1 for the two commit objects. Or, look at 'git log' of the resulting commit objects, and look for a 'Merge:' line. Deskin Miller --
Nov 9, 4:35 pm 2008
Alexander Gavrilov
[PATCH (GITK)] gitk: Fix commit encoding support.
This commit fixes two problems with commit encodings: 1) git-log actually uses i18n.logoutputencoding to generate its output, and falls back to i18n.commitencoding only when that option is not set. Thus, gitk should use its value to read the results, if available. 2) The readcommit function did not process encodings at all. This led to randomly appearing misconverted commits if the commit encoding differed from the current locale. Now commit messages should be displayed correctl...
Nov 9, 11:06 am 2008
Christian Couder
[PATCH] bisect: fix missing "exit"
In my previous patch: 6a54d97 (2008-09-06 07:27:03 +0200 Christian Couder) bisect: remove "checkout_done" variable used when checking merge bases I forgot to move '|| exit' to a line above. This patch should fix that. Signed-off-by: Christian Couder <chriscool@tuxfamily.org> --- git-bisect.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/git-bisect.sh b/git-bisect.sh index 79de701..0d0e278 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -455,7 +455,7...
Nov 9, 10:25 am 2008
Christian Couder
[PATCH] Documentation: bisect: change a few instances of "gi...
Signed-off-by: Christian Couder <chriscool@tuxfamily.org> --- Documentation/git-bisect.txt | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/git-bisect.txt b/Documentation/git-bisect.txt index c7981ef..39034ec 100644 --- a/Documentation/git-bisect.txt +++ b/Documentation/git-bisect.txt @@ -26,7 +26,7 @@ on the subcommand: git bisect log git bisect run <cmd>... -This command uses 'git-rev-list --bisect' to help drive the +This command...
Nov 9, 9:53 am 2008
Christian Couder
[PATCH] Documentation: rev-list: change a few instances of "...
Signed-off-by: Christian Couder <chriscool@tuxfamily.org> --- Documentation/rev-list-options.txt | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Documentation/rev-list-options.txt b/Documentation/rev-list-options.txt index 966276b..68a253f 100644 --- a/Documentation/rev-list-options.txt +++ b/Documentation/rev-list-options.txt @@ -285,7 +285,7 @@ See also linkgit:git-reflog[1]. History Simplification ~~~~~~~~~~~~~~~~~~~~~~ -When optional paths are give...
Nov 9, 9:46 am 2008
Ian Hilt
[PATCH] git send-email: edit recipient addresses with the --...
Sometimes specifying the recipient addresses can be tedious on the command-line. This commit will allow the user to edit the recipient addresses in their editor of choice. Signed-off-by: Ian Hilt <ian.hilt@gmx.com> --- This is on top of Pierre's most recent series. I'm not exactly happy with the way it turned out, but it seems to function correctly. Comments are most welcome. [ This is a resend. I don't know what happened to the first mail I sent to the list. ] git-send-email...
Nov 9, 8:59 am 2008
Francis Galiegue
Re: [PATCH] git send-email: edit recipient addresses with th...
Greedy operators are only supported with perl 5.10 or more... I think it's a bad idea to use them... -- Francis Galiegue ONE2TEAM Ingénieur système Mob : +33 (0) 6 83 87 78 75 Tel : +33 (0) 1 78 94 55 52 fge@one2team.com 40 avenue Raymond Poincaré 75116 Paris --
Nov 9, 10:13 am 2008
Ian Hilt
Re: [PATCH] git send-email: edit recipient addresses with th...
The problem here was that a space should follow the field, but it may not. The user may unwarily backup over it. "\s*" would match this case. But if there is a space, it is included in the "(.+)". So I tried "\s+", which did not include the space, but it won't include the first address if there isn't a space after the field. The quantified subpattern seemed to do the trick. But, if it could result in a dependency issue, I would agree this would be a bad idea. =09Ian
Nov 9, 4:09 pm 2008
Junio C Hamano
Re: [PATCH] git send-email: edit recipient addresses with th...
You expect something non-blank there anyway, so why not do: To:\s*(\S.*?)\s*\n.... --
Nov 9, 6:09 pm 2008
Junio C Hamano
Re: Init on push
Why have we ended up losing the most important Cc: to the original patch submitter who asked if the idea of his patch is sound? --
Nov 8, 8:13 pm 2008
Francis Galiegue
Re: Init on push
Sorry for that. I blindly "replied to all", not seeing that the reply chain has been "broken" along the way. -- fge --
Nov 8, 9:41 pm 2008
Jakub Narebski
Re: [RFC] Configuring (future) committags support in gitweb
Not necessary. Please remember that you can configure gitweb to either use _alternate_ stylesheet (instead of provided gitweb.css), or use _additional_ stylesheet (for example gitweb-commit.css in addition to No, they are 'post-processed': finding correct action is left to _after_ you click on the link (it is more natural, and helps performance). If you don't know action for given SHA-1 you can use either http://example.com/gitweb.cgi?a=object;h=deadbeef which finds correct type (for e...
Nov 8, 8:25 pm 2008
Junio C Hamano
Re: [PATCH 2/2] Cached the git configuration, which is now n...
These are patches to fast-import/git-p4, which you two seem to in charge of. From: John Chapman <thestar@fussycoder.id.au> Subject: [PATCH 1/2] Added support for purged files and also optimised memory usage. Date: Sat, 8 Nov 2008 14:22:48 +1100 Message-Id: <1226114569-8506-1-git-send-email-thestar@fussycoder.id.au> From: John Chapman <thestar@fussycoder.id.au> Subject: [PATCH 2/2] Cached the git configuration, which is now noticibly faster on windows. ...
Nov 9, 2:33 pm 2008
Jean-Luc Herren
Re: How it was at GitTogether'08 ?
Do such git shirts exist already and could be ordered somewhere? I might be interested in buying one. Cheers, jlh --
Nov 9, 7:32 pm 2008
Jakub Narebski
Re: How it was at GitTogether'08 ?
Still missing (neither video, nor slides, nor description, nor email) + What was the difference between "Tim: Large media in Git (Repeat)" from Wed, and earlier "Tim: Git as a Media Repository" from Tue? -- Jakub Narebski Poland --
Nov 9, 7:49 am 2008
Shawn O. Pearce
Re: How it was at GitTogether'08 ?
JGit slides: http://www.spearce.org/2008/11/JGit.pdf Pack v4 slides: http://www.spearce.org/2008/11/Pack_v4.pdf I also had these as a Google Doc, but its internal on the google.com domain so I can't easily publish it. Plus PDF is probably more portable to older browsers than the Google Docs site is. :-) -- Shawn. --
Nov 9, 3:54 pm 2008
Jakub Narebski
Re: How it was at GitTogether'08 ?
Thanks. Added to http://git.or.cz/gitwiki/GitTogether -- Jakub Narebski Poland --
Nov 9, 6:03 pm 2008
Steven Grimm Nov 9, 12:52 pm 2008
Robin Rosenberg
Re: How it was at GitTogether'08 ?
Requiring a google (or facebook for that matter) account is read public documents is not nice. -- robin --
Nov 9, 2:58 pm 2008
Shawn O. Pearce
Re: How it was at GitTogether'08 ?
No, its not. The owner of the document can publish the document, making it world-readable, *without* needing a login. I think they just forgot to do that on this particular presentation. Steven, can you publish that doc, so it doesn't require login to read? -- Shawn. --
Nov 9, 3:55 pm 2008
Steven Grimm
Re: How it was at GitTogether'08 ?
My bad. Here's the published, no-login-required version: http://docs.google.com/Presentation?id=dhhs72s2_1wtzbnsnj -Steve --
Nov 9, 5:58 pm 2008
Jakub Narebski
Re: How it was at GitTogether'08 ?
Would it be possible to publish PDF version sowehere, for example as attachement to http://git.or.cz/gitwiki/GitTogether? My old web browser doesn't support Google Docs... -- Jakub Narebski Poland --
Nov 9, 7:52 pm 2008
Jakub Narebski
Re: How it was at GitTogether'08 ?
Thanks. Added to http://git.or.cz/gitwiki/GitTogether (even if I cannot view them in my old web browser). -- Jakub Narebski Poland --
Nov 9, 1:54 pm 2008
Kai Blin
Re: How it was at GitTogether'08 ?
Interesting. How would you use submodules to work around the fact that bina= ry=20 file changes diff very bad and produce huge histories with basically no val= ue=20 for the user of the working copy? Can you do this from a GUI, easily? We're= =20 talking about media repositories here, so our users are artists. Cheers, Kai =2D-=20 Kai Blin WorldForge developer http://www.worldforge.org/ Wine developer http://wiki.winehq.org/KaiBlin Samba team member [ message continues ]
" title="http://www.samba.org/samba...">http://www.samba.org/samba...
Nov 9, 11:36 am 2008
Jakub Narebski
Re: How it was at GitTogether'08 ?
What I meant here (but perhaps was not clear) was (ab)using submodules to allow to have full working repository without large [media] files both in object database (repository) and without them checked out. The workaround is to put all large files for example in 'media/' folder, and make this folder be submodule. Each clone of repository can have this 'media' submodule either present (both in object database, although usually separate from main project object database), or not present (not cloned...
Nov 9, 12:31 pm 2008
Kai Blin
Re: How it was at GitTogether'08 ?
Tim was talking about that media/ folder and managing that in git. If you w= ant=20 to work on the media, you might end up getting hundreds of gigabytes of dat= a=20 to get that folder, even if you only need to change one single file. That's the issue we're running into, and I don't thing submodules solve thi= s=20 at all. Cheers, Kai =2D-=20 Kai Blin WorldForge developer http://www.worldforge.org/ Wine developer http://wiki.winehq.org/KaiBlin Samba team member [ message continues ]
" title="http://www.s...">http://www.s...
Nov 9, 2:55 pm 2008
Jeff King
Re: [RFC PATCH 0/4] deny push to current branch of non-bare ...
Ah, I see. I did think about using the config variable for those tests, but it felt too much like testing two things at once. That is, it is nicer to debug if each test breaks only when the thing it is testing for is broken, not some other random unrelated feature. Obviously that isn't always possible, but it seemed kind of clumsy to me. Anyway, with a default of "warn" the tests don't need any update at all (and do serve as a test that we still haven't broken people), and I can pass the decision...
Nov 8, 9:49 pm 2008
Jan
Re: [PATCH 1/4] t5400: expect success for denying deletion
Hi, Yes, that's exactly what happened, and it won't likely happen again. Thanks for fixing and for the Cc. -Jan --
Nov 9, 6:38 am 2008
Jeff King
Re: [PATCH 1/2] diffcore-rename: support rename cache
Hmm, yeah. I was thinking you might be able to do some kind of cut-off on the caching (i.e., don't bother storing anything that didn't come close). But you can't safely assume that because an entry isn't there, it isn't worth seeing (since it might also just not have been computed yet). You could still organize by commit, and then each commit is either fully computed or not. But then you still have a pathspec problem. One thing you could do is just compute the rename score between all pairs, even...
Nov 8, 10:04 pm 2008
Piotr Findeisen
Re: Documentation/user-manual.txt, asciidoc and "--" escapes
Same thing done the right way. regards, P. On Fri, Nov 7, 2008 at 04:09, Piotr Findeisen <piotr.findeisen@gmail.com> w=
Nov 9, 4:44 am 2008
Jonas Fonseca
Re: Documentation/user-manual.txt, asciidoc and "--" escapes
Please read Documentation/SubmittingPatches for the preferred way to Newer asciidoc versions have the following "workaround". Maybe adding something like this to Documentation/asciidoc.conf would be more future proof. # -- Spaced and unspaced em dashes (entity reference —) # But disallow unspaced in man pages because double-dash option name prefixes # are pervasive. ifndef::doctype-manpage[] (^|[^-\\])--($|[^-])=\1—\2 endif::doctype-manpage[] ifdef::doctype-manpage[] (...
Nov 9, 2:52 pm 2008
Alex Riesen
Re: multiple-commit cherry-pick?
Oh, I am. But it is just so convenient to have range support for commands which just show commits. Besides, git-show just errors out, instead of producing the commits like git-log does. --
Nov 9, 6:25 am 2008
Junio C Hamano Nov 9, 2:56 pm 2008
Nguyen Thai Ngoc Duy
Re: Git and Media repositories....
Maybe another use case: encrypted blobs (those are generally unavailable until corrected password is given, so they are "holes" in checkout/clone). It could be used to store sensitive content (in $HOME for example) -- Duy
Nov 9, 12:58 am 2008
Alexander Gavrilov
Re: [PATCH (GITK) v3 6/6] gitk: Explicitly position popup wi...
I don't know about MacOS, but in Linux it does seem unnecessary, so: --- >8 --- Subject: [PATCH] gitk: Explicitly position popup windows. For some reason, on Windows all transient windows are placed in the upper left corner of the screen. Thus, it is necessary to explicitly position the windows relative to their parent. For simplicity this patch uses the function that is used internally by Tk dialogs. Signed-off-by: Alexander Gavrilov <angavrilov@gmail.com> --- gitk | 29 ++++...
Nov 9, 10:53 am 2008
Paul Mackerras
Re: [PATCH (GITK) v3 6/6] gitk: Explicitly position popup wi...
Do you mean "please add the if statement", i.e. don't call tk::PlaceWindow under Linux? Like Johannes Sixt, I find your request ambiguous. :) Paul. --
Nov 9, 7:12 am 2008
Alex Riesen
Re: [PATCH (GITK) v3 6/6] gitk: Explicitly position popup wi...
That one. So PlaceWindow is NOT called. --
Nov 9, 6:26 am 2008
Alexander Gavrilov
Re: [PATCH (GITK) v3 3/6] gitk: Add accelerators to frequent...
For some reason it didn't work. Maybe I did something wrong. --- >8 --- Subject: [PATCH] gitk: Add accelerators to frequently used menu commands. This commit documents keyboard accelerators used for menu commands in the menu, as it is usually done, and adds some more, e.g. F4 to invoke Edit View. The changes include a workaround for handling Shift-F4 on systems where XKB binds special XF86_Switch_VT_* symbols to Ctrl-Alt-F* combinations. Tk often receives these codes when Shift-F* is p...
Nov 9, 7:21 am 2008
previous daytodaynext day
November 8, 2008November 9, 2008November 10, 2008