Re: [PATCH] bash completion: Add --recurse-submodules

2014-02-10 Thread Keshav Kini
Sup Yut Sum writes: > Signed-off-by: Sup Yut Sum > --- > contrib/completion/git-completion.bash | 19 ++- > 1 file changed, 18 insertions(+), 1 deletion(-) Aren't you missing a commit message? -Keshav -- To unsubscribe from this list: send the line "unsubscribe git" in the bo

Re: Aw: Re: Re: Re: [Bug report] 'git status' always says "Your branch is up-to-date with 'origin/master'"

2014-01-14 Thread Keshav Kini
The following message is a courtesy copy of an article that has been posted to gmane.comp.version-control.git as well. Junio C Hamano writes: > Thomas Ackermann writes: >>> > But for the simple use case where you only have a master >>> > branch I consider it not really helpful and - at least for

Re: [PATCH] i18n: move the trailing space out of translatable strings

2013-12-07 Thread Keshav Kini
The following message is a courtesy copy of an article that has been posted to gmane.comp.version-control.git as well. Duy Nguyen writes: > On Sun, Dec 8, 2013 at 9:11 AM, Nguyễn Thái Ngọc Duy > wrote: >> I could fix vi.po alone, but it'd be better to avoid similar mistakes >> for all translati

Re: [PATCH] drop support for "experimental" loose objects

2013-11-21 Thread Keshav Kini
Duy Nguyen writes: > On Thu, Nov 21, 2013 at 6:48 PM, Jeff King wrote: >> @@ -1514,14 +1469,6 @@ unsigned long unpack_object_header_buffer(const >> unsigned char *buf, >> >> int unpack_sha1_header(git_zstream *stream, unsigned char *map, unsigned >> long mapsize, void *buffer, unsigned long b

Re: Command-line git Vs IDE+plugin?

2013-11-19 Thread Keshav Kini
Thomas Koch writes: > But also from experience I can tell that without exception everybody whom I > teached Git understood it only after being introduced to the basic concepts > of > Git and how to inspect and operate them on the commandline. Others told me > from similar experiences. > > Thos

Re: Selectively commit/publish files to GIT

2013-11-08 Thread Keshav Kini
Thomas Manson writes: > The problem is that in Bazaar, I've commited some big files (63MB & > 173MB), but this files are no longer in my project, only in the > revisions files of Bazaar and now Git. > > I don't need this files to be pushed on Github. > > How can I search git history for big

Re: rcs

2013-10-29 Thread Keshav Kini
"Finnerty, James M Mr CTR USA USASOC-SOAR" writes: > Hi. I'm going to attempt to import a git database into Razor which is > linux rcs based. Does the linux version of git use rcs ? If you're talking about the GNU rcs program, no, it does not. -Keshav -- To unsubscribe from this list: send the

Re: [BUG?] inconsistent `git reflog show` output, possibly `git fsck` output

2013-10-28 Thread Keshav Kini
Junio C Hamano writes: > Roberto Tyley writes: >> On 21/09/2013 23:16, Keshav Kini wrote: >>> [SNIP] >>> This situation came about because the BFG Repo-Cleaner doesn't write new >>> reflog entries after creating its new objects and moving refs around.

Re: [PATCH] graph.c: visual difference on subsequent series

2013-10-28 Thread Keshav Kini
o are only reading the list via actual email (as I am not such a person). > Keshav Kini writes: >> What about just putting an extra blank line after every root commit line >> (possibly except the last one)? That should make it plenty easy to see >> where the root commits a

Re: [PATCH] graph.c: visual difference on subsequent series

2013-10-25 Thread Keshav Kini
Milton Soares Filho writes: > On 25 October 2013 15:13, Junio C Hamano wrote: >> Milton Soares Filho writes: >> >>> git log --graph --oneline >>> * a1 >>> * a2 >>> x a3 >>> * b1 >>> * b2 >>> x b3 >> >> I agree that the problem you are trying to solve is a good thing t

Re: [PATCH] git-svn documentation: Use tabs consistently within the ascii doc

2013-10-18 Thread Keshav Kini
Stefan Beller writes: > While I can understand 4 or 7 white spaces are fancy, we'd rather want > to use tabs throughout the whole document. You missed lines 278 and 833. There are also some spaces around line 488, but maybe those are layout-relevant and so shouldn't be converted to tabs. -Kesh

Re: [PATCH v5] diff.c: keep arrow(=>) on show_stats()'s shortened filename part to make rename visible.

2013-10-15 Thread Keshav Kini
Junio C Hamano writes: > Yoshioka Tsuneo writes: > >> "git diff -M --stat" can detect rename and show renamed file name like >> "foofoofoo => barbarbar". But if destination filename is long, the line >> is shortened like "...barbarbar" so there is no way to know whether the >> file is renamed or

Re: [BUG?] inconsistent `git reflog show` output, possibly `git fsck` output

2013-10-15 Thread Keshav Kini
Junio C Hamano writes: > Roberto Tyley writes: > >> On 21/09/2013 23:16, Keshav Kini wrote: >>> [SNIP] >>> This situation came about because the BFG Repo-Cleaner doesn't write new >>> reflog entries after creating its new objects and moving refs aroun

Re: [spf:guess,mismatch] [PATCH v2] diff.c: keep arrow(=>) on show_stats()'s shortened filename part to make rename visible.

2013-10-11 Thread Keshav Kini
Sam Vilain writes: > On 10/11/2013 06:07 AM, Yoshioka Tsuneo wrote: >> +prefix_len = ((prefix_len >= 0) ? prefix_len : >> 0); >> +strncpy(pre_arrow, arrow - prefix_len, >> prefix_len); >> +pre_arrow[prefix_len]

[PATCH v2 1/4] git-svn.txt: fix AsciiDoc formatting error

2013-09-29 Thread Keshav Kini
As asterisks are used to indicate bold text in AsciiDoc, shell glob expressions must be escaped appropriately. Signed-off-by: Keshav Kini --- Documentation/git-svn.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt index

[PATCH v2 2/4] git-svn.txt: reword description of gc command

2013-09-29 Thread Keshav Kini
It's redundant to say that $GIT_DIR/svn//unhandled.log or $GIT_DIR/svn//index is in .git/svn when $GIT_DIR is '.git', and is wrong when $GIT_DIR is not '.git' Also, a '/' was missing from the pathname $GIT_DIR/svn//index . Signed-off-by: Keshav Kini --- Do

[PATCH v2 4/4] git-svn.txt: elaborate on rev_map files

2013-09-29 Thread Keshav Kini
. This patch adds a FILES section to the man page with a description of what $GIT_DIR/svn/**/.rev_map* files are and how they are (re)built, and links to this description from various other parts of the man page. Signed-off-by: Keshav Kini --- Documentation/git-svn.txt | 28

[PATCH v2 0/4] git-svn.txt: miscellaneous changes

2013-09-29 Thread Keshav Kini
I'm not sure if this was the best way to split my changes into commits. Please let me know if it wasn't. Keshav Kini (4): git-svn.txt: fix AsciiDoc formatting error git-svn.txt: reword description of gc command git-svn.txt: replace .git with $GIT_DIR git-svn.txt: elaborate

[PATCH v2 3/4] git-svn.txt: replace .git with $GIT_DIR

2013-09-29 Thread Keshav Kini
mmit, because in AsciiDoc definitions apparently can't start with a '.' character. Signed-off-by: Keshav Kini --- Documentation/git-svn.txt | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt index 62e

Re: [PATCH] Remove ciabot from contrib

2013-09-26 Thread Keshav Kini
Stefan Beller writes: > According to > http://thread.gmane.org/gmane.comp.version-control.git/212649 > Eric, the original author of ciabot, doesn't want the ciabot > no longer be included in git.git, hence the removal of the > whole directory. I take it you mean that he doesn't want the ciabot *

Re: [PATCH] RelNotes/1.8.5: direct script writers to "git status --porcelain"

2013-09-26 Thread Keshav Kini
Jakub Narebski writes: > Matthieu Moy imag.fr> writes: >> * "git status" now omits the prefix to make its output a comment in a >> commit log editor, which is not necessary for human consumption. >> + Scripts that parse the output of "git status" are advised to use >> + "git status --po

Re: [PATCH] git-svn.txt: mention how to rebuild rev_map files

2013-09-25 Thread Keshav Kini
Jonathan Nieder writes: >> @@ -684,7 +687,7 @@ svn-remote..noMetadata:: >> + >> This option can only be used for one-shot imports as 'git svn' >> will not be able to fetch again without metadata. Additionally, >> -if you lose your .git/svn/**/.rev_map.* files, 'git svn' will not >> +if you lose

Re: [PATCH] git-svn.txt: mention how to rebuild rev_map files

2013-09-25 Thread Keshav Kini
Jonathan Nieder writes: > Keshav Kini wrote: > >> I changed the wording of your first paragraph a bit according to what I >> thought it meant. Does it still convey what you wanted to convey, and is >> it still correct? >> >> Mapping between Subver

Re: [PATCH] git-svn.txt: mention how to rebuild rev_map files

2013-09-25 Thread Keshav Kini
Jonathan Nieder writes: > Taking a step back, the reader might wonder *why* he would want > to run "git svn fetch" to rebuilt these .rev_map.* files, and what > they are for. > > Perhaps there should be a separate REVISION MAP section describing > this in more detail. Something as simple as > >

Re: "git checkout foo" is getting confused by folder named "foo"

2013-09-24 Thread Keshav Kini
David Aguilar writes: > On Tue, Sep 24, 2013 at 2:07 PM, Jona Christopher Sahnwaldt > wrote: >> Hi, >> >> maybe this has already been reported, but I didn't find it in the mail >> archive. >> >> If I understand correctly, after I clone a repo, I should be able to >> switch to branch foo just by

[PATCH] git-svn.txt: mention how to rebuild rev_map files

2013-09-23 Thread Keshav Kini
e to the description of the 'fetch' command to rectify this oversight, and also fixes an AsciiDoc escaping typo. Signed-off-by: Keshav Kini --- Documentation/git-svn.txt | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Documentation/git-svn.txt b/Documenta

Re: [BUG?] inconsistent `git reflog show` output, possibly `git fsck` output

2013-09-21 Thread Keshav Kini
Keshav Kini writes: > For example, if `git > reflog show HEAD` displayed this: > > 0123456 [stuff] foo > 789abcd [stuff] bar > ef01234 [stuff] baz > > Then I would expect the reflog data file for HEAD to look something like > this, where '.&

[BUG?] inconsistent `git reflog show` output, possibly `git fsck` output

2013-09-21 Thread Keshav Kini
Hello, When trying out Roberto Tyley's BFG Repo-Cleaner program [1], I managed to put a git repository in the following state: [2] fs@erdos /tmp/bfg-test-repo $ cat .git/logs/HEAD 00afb9f9a0c87dba4a203413358984e9f4fa5ffb Keshav Kini 13797

Re: [PATCH] commit-tree: resurrect command line parsing updates

2012-07-17 Thread Keshav Kini
Junio C Hamano writes: > * I privately received a patch that is essentially the same from >Keshav, but I do not see it either on the list or on gmane. I >suspect the message was sent via gmane's news submission >interface and probably it is taking some time propagating back to >t