Re: cdgit: cd relative to git workdir root

2013-09-16 Thread martin f krafft
also sprach Thomas Koch [2013.09.16.2101 +0200]: > shell alias cdgit = cd $(git root) I've tried to make this happen many years ago, but I never finished the ZLE widget that did it. The idea was to bind 'tab' to a function that would replace an occurrence of ~g in $LBUFFER with the output of rev-

Re: Pls Reply Soon!

2013-09-16 Thread mslizawong
i have a business proposal for you, write me back for more info. -Sent from my ipad. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: Issue with sparse checkout

2013-09-16 Thread Martin Gregory
An additional note. I did git ls-files -v | grep ^S and I can see that the files that remain in the working version have the ^S bit set. So it does feel like a bug to me: why are files with ^S set remaining in the working version after git read-tree -mu HEAD ? Regards, Martin -- T

sparse checkout file with windows line endings doesn't work

2013-09-16 Thread Martin Gregory
Hi, Please see http://pastebin.com/zMXvvXuy It shows that if the .git/info/sparsecheckout file is in windows format (windows line ending) then it doesn't work. Thanks for any advice. This is git 1.8.3.msysgit.0 Martin -- To unsubscribe from this list: send the line "unsubscribe git" in the b

Re: .gitattributes and defaulting to binary

2013-09-16 Thread Jeff King
On Mon, Sep 16, 2013 at 05:35:24PM -0400, Matthieu Vachon wrote: > But I was not able to achieve it right now. When having this in my > `.gitattributes`, git treats all files as binary, even the one > explicitly specified like `*.txt`: > > *.txt text > * binary >From "git help attributes

Re: Re-Transmission of blobs?

2013-09-16 Thread Jeff King
On Fri, Sep 13, 2013 at 12:09:35PM +0200, Josef Wolf wrote: > > > I'm not sure I understand correctly. I see that bitmaps can be used to > > > implement set operations. But how comes that walking the graph requires a > > > lot > > > of CPU? Isn't it O(n)? > > > > Yes and no. Your "n" there is th

Re: Git rebase dies with fatal: Unable to create '.../.git/index.lock': File exists.

2013-09-16 Thread Jeff King
On Mon, Sep 16, 2013 at 03:21:59PM -0600, Jason Gunthorpe wrote: > > I'm not clear on which git commands are being run. If they are actually > > mutating the index, then isn't this more than a lock contention issue? > > In other words, "git rebase" is assuming nobody is mucking with the > > index

.gitattributes and defaulting to binary

2013-09-16 Thread Matthieu Vachon
Hi all, I would like to craft my `.gitattributes` in a way that all files expect those specified in it are treated as binary from a line-ending normalization point of view (and diff viewing). But I was not able to achieve it right now. When having this in my `.gitattributes`, git treats all files

Re: Git rebase dies with fatal: Unable to create '.../.git/index.lock': File exists.

2013-09-16 Thread Jason Gunthorpe
On Mon, Sep 16, 2013 at 05:15:01PM -0400, Jeff King wrote: > On Mon, Sep 16, 2013 at 12:28:52PM -0600, Jason Gunthorpe wrote: > > > I have emacs windows open that have files within the git tree open in > > them. My emacs has vc-git mode loaded and global-auto-revert-mode set. > > > > During the r

Re: Git rebase dies with fatal: Unable to create '.../.git/index.lock': File exists.

2013-09-16 Thread Jeff King
On Mon, Sep 16, 2013 at 12:28:52PM -0600, Jason Gunthorpe wrote: > I have emacs windows open that have files within the git tree open in > them. My emacs has vc-git mode loaded and global-auto-revert-mode set. > > During the rebase the files open in emacs are changed by git, when > emacs notices

cdgit: cd relative to git workdir root

2013-09-16 Thread Thomas Koch
Hi, I frequently have the need to cd back to the root of the current git workdir and created to alias for this: git alias root = rev-parse --show-toplevel shell alias cdgit = cd $(git root) Maybe somebody likes this. Now it would be cool, to have an alias to cd into a specific subdir of the g

Re: cdgit: cd relative to git workdir root

2013-09-16 Thread Adam Spiers
On Mon, Sep 16, 2013 at 09:01:14PM +0200, Thomas Koch wrote: > Hi, > > I frequently have the need to cd back to the root of the current git workdir > and created to alias for this: > > git alias root = rev-parse --show-toplevel > > shell alias cdgit = cd $(git root) > > Maybe somebody likes th

Git rebase dies with fatal: Unable to create '.../.git/index.lock': File exists.

2013-09-16 Thread Jason Gunthorpe
Scenario, run: $ git rebase v3.10.12 --autosquash -i And randomly get this: fatal: Unable to create '.../linux/.git/index.lock': File exists. If no other git process is currently running, this probably means a git process crashed in this repository earlier. Make sure no other git process

Re: [PATCH 3/3] git submodule update should give notice when run without init beforehand

2013-09-16 Thread Jens Lehmann
Am 15.09.2013 19:38, schrieb Tay Ray Chuan: > When 'update' is run with no path in a repository with uninitialized > submodules, the program terminates with no output, and zero status code. > Be more helpful to users by mentioning this. Hmm, this patch is changing the default behavior, right? I as

Re: Bash completion doing full tree traversal?

2013-09-16 Thread Isaac Levy
I should clarify that I had an untracked directory which contained a significant number of files; I can fix by adding it to gitignore. Still, the long delay & tree traversal were unexpected. Isaac On Sun, Sep 8, 2013 at 2:12 PM, Isaac Levy wrote: > I experienced a weird stall from git bash compl

Issue with sparse checkout

2013-09-16 Thread Martin Gregory
I wonder if you can advise me if this is a bug with sparsecheckout, or if not what I'm doing wrong: http://pastebin.com/HUaWrtef Basically, I believe that when I do git read-tree, I should be left with only the directory CONFIGURATION. However, DV_TDM remains. But it's status seems to be "ind

RFC: git bisect should accept "paths-to-be-excluded"

2013-09-16 Thread Toralf Förster
I'm bisecting a linux kernel issue and want to ignore all commits just touching something in ./drives/staging. Currently the only way would be to specify all dir/subdir combination under ./linux except that particular directory, right ? -- MfG/Sincerely Toralf Förster pgp finger print: 7B1A 07F4

Re: 1.8.4 rebase regression?

2013-09-16 Thread Matthieu Moy
Patrick Welche writes: > $ git diff > ESC[1mdiff --cc glib/gmain.cESC[m > ESC[1mindex 738e69c,5aaebd0..000ESC[m > ESC[1m--- a/glib/gmain.cESC[m > ESC[1m+++ b/glib/gmain.cESC[m > ESC[36m@@@ -4953,32 -4921,32 +4953,48 @@@ESC[m > ESC[mg_unix_signal_watch_dispatch (GSourcESC[m > > > (same xterm,

Re: 1.8.4 rebase regression?

2013-09-16 Thread Patrick Welche
On Mon, Sep 16, 2013 at 09:52:35AM +0200, Matthieu Moy wrote: > Patrick Welche writes: > > > I just upgraded (via pkgsrc) from git 1.8.3.4 to 1.8.4. With 1.8.4, I had > > local changes in glib, did a git pull --rebase. Some of my changes > > conflicted, but > > > > $ git rebase --abort > > No reb

Nike Air Max Damen 90

2013-09-16 Thread niowrw
Von Kindern bis zu Senioren garantieren, dass Sie , die meisten Menschen , über die Linien von Nike , bekannt mit Nike Air Max Damen 90 Bewunderung zu Joggen Turnschuhe ist . Gerichtssaal Nike Sicherlich praktisch kein Preis Nike

Re: 1.8.4 rebase regression?

2013-09-16 Thread Matthieu Moy
Patrick Welche writes: > I just upgraded (via pkgsrc) from git 1.8.3.4 to 1.8.4. With 1.8.4, I had > local changes in glib, did a git pull --rebase. Some of my changes > conflicted, but > > $ git rebase --abort > No rebase in progress? > > so somehow the usual process of amending the edit, or ski

nike blazer mid damen

2013-09-16 Thread niowrw
Schuhe braucht, nike blazer mid damen um bequem Artikel, die Sie gerne auf eigene Faust zu Fuß zu platzieren , und sie sind in der Lage Tragen für lange Zeit sein. Wann immer das macht den Kauf von neuen Stiefeln haben Sie zahlreiche Bedenken