Hi,
On Fri, Mar 6, 2015 at 6:41 PM, David Kastrup wrote:
> At some point of time I think it may be worth reevaluating the toxic
> atmosphere against freelancers doing Git development.
My opinion on this is that the Git community has not been good
especially lately at promoting its own developer
Hi all,
My name is Dongcan Jiang. I am studying for my Master Degree at Peking
University
majoring in Computer Science. I have been using Git to manage my projects
for about half a year. It's really exciting that Git has been helping me make
revision control much more convenient. Therefore, I am v
Because --graph is about connected history while
--no-walk is about discrete points. [1]
It's a pity that git-show has to allow such combination
in order to make t4052-stat-output.sh compatible. [2]
2 testcases have been added to test this patch.
[1]: http://article.gmane.org/gmane.comp.version-
On Sat, Mar 7, 2015 at 11:28 AM, Stefan Beller wrote:
>>> +
>>> + advertised-refs = (no-refs / list-of-refs)
>>> + *shallow
>>> + flush-pkt
>>
>> I am not sure if defining "shallow" as part of "refs advertisement"
>> is a good idea. The latter lives in t
About 10 days ago I sent out this message (just reproducing the
relevant headers here):
From: Kyle J. McKay
Date: February 24, 2015 09:16:05 PST
To: Junio C Hamano
Cc: Git Mailing List
Subject: Any chance for a Git v2.1.5 release?
Message-Id:
Content-Type: text/plain; charset=US-ASCII; for
On Fri, Mar 6, 2015 at 4:28 PM, Junio C Hamano wrote:
> Stefan Beller writes:
>
>> @@ -67,7 +74,6 @@ gracefully with an error message.
>>error-line = PKT-LINE("ERR" SP explanation-text)
>>
>>
>> -
>> SSH Transport
>
> Noise?
>
>> @@ -124,9 +130,56 @@ has, the first can 'fetch' fro
On Fri, Mar 6, 2015 at 6:18 AM, Karthik Nayak wrote:
> 'git -C ""' unhelpfully dies with error "Cannot change to ''",
> whereas the shell treats `cd ""' as a no-op. Taking the shell's
> behavior as a precedent, teach git to treat `-C ""' as a no-op, as
> well.
>
> Test to check the no-op behaviour
Hi all, I am a GSoC '15 aspirant for git.
In this commit I have directly associated "-" to "@{-1}" except when it refers
to a filename.
All the given tests pass(except those which shouldn't).
I have to add a failsafe for the case in when there is no branch as "@{-1}".
For this I have a
rough id
Karthik Nayak writes:
> 'git -C ""' unhelpfully dies with error "Cannot change to ''",
> whereas the shell treats `cd ""' as a no-op. Taking the shell's
> behavior as a precedent, teach git to treat `-C ""' as a no-op, as
> well.
>
> Test to check the no-op behaviour of "-C " when is
> empty, wr
Hi, please CC me if that is not your usual fashion, because I am not
subscribed.
I use git for my build scripts - those are accessed over nfs. Since
I started using 2.1 and later (I don't think I used 2.0) commands
such as 'commit' take a long time before anything happens. I
assumed that the new
On Sat, Mar 07, 2015 at 01:20:22AM +0100, René Scharfe wrote:
> > Not a big deal, but do we want to rename sanitize_client_strbuf to
> > sanitize_client? It only had the unwieldy name to distinguish it from
> > this one.
>
> A patch would look like this. The result is shorter, but no win in
> te
On Sat, Mar 07, 2015 at 01:54:12AM +0100, René Scharfe wrote:
> >These probably want to all be strbuf_release(). Again, I doubt it
> >matters much because this is a forked daemon serving only a single
> >request (so they'll get freed by the OS soon anyway), but I think
> >freeing the memory here f
Am 06.03.2015 um 22:06 schrieb Jeff King:
On Fri, Mar 06, 2015 at 09:57:22AM +0100, René Scharfe wrote:
if (port) {
- free(tcp_port);
- tcp_port = sanitize_client(port);
+
Stefan Beller writes:
> @@ -67,7 +74,6 @@ gracefully with an error message.
>error-line = PKT-LINE("ERR" SP explanation-text)
>
>
> -
> SSH Transport
Noise?
> @@ -124,9 +130,56 @@ has, the first can 'fetch' from the second. This
> operation determines
> what data the server
Am 06.03.2015 um 22:06 schrieb Jeff King:
> On Fri, Mar 06, 2015 at 09:57:22AM +0100, René Scharfe wrote:
>
>> Convert hostname, canon_hostname, ip_address and tcp_port to strbuf.
>> This allows to get rid of the helpers strbuf_addstr_or_null() and STRARG
>> because a strbuf always represents a va
On Sat, Mar 7, 2015 at 6:38 AM, Stefan Beller wrote:
> +Reference Discovery (v2)
> +
> +
> +In version 2, reference discovery is initiated by the client with
> +"want-refs" line. The client may skip reference discovery phase
> +entirely by not sending "want-refs" (e.g. the
I'm still wondering if we should reserve more from the packet length.
We have used length for pkt-flush. Shawn pointed out that we
still have 0001, 0002 and 0003 but we may use some of them to avoid
abuse of pkt-flush in some cases. Perhaps we could limit packet length
to 0xfff0, so we have 0x
The latest maintenance release Git v2.3.2 is now available at
the usual places.
The tarballs are found at:
https://www.kernel.org/pub/software/scm/git/
The following public repositories all have a copy of the 'v2.3.2'
tag and the 'maint' branch that the tag points at:
url = https://kernel
[note to regular readers; there are a few updated paragraphs,
regarding our association with SFC and also our security mailing
list.]
Welcome to the Git development community.
This message is written by the maintainer and talks about how Git
project is managed, and how you can work with it.
* Ma
Here are the topics that have been cooking. Commits prefixed with
'-' are only in 'pu' (proposed updates) while commits prefixed with
'+' are in 'next'.
A few more batches of topics have been merged to 'master', including
both fixes and enhancements. The second maintenance release for
v2.3 has b
On Fri, Mar 6, 2015 at 3:38 PM, Stefan Beller wrote:
> From: Duy Nguyen
Oops. I edited the proposal from Duy heavily(?), such that it is
different from what he proposed 4 days ago.
In my impression this is what most of the participants would agree on.
--
To unsubscribe from this list: send the
From: Duy Nguyen
Signed-off-by: Stefan Beller
---
Notes:
This is just aimed at untangling capabilities and refs
advertisement, no new features.
Hence this is missing the proposal from Duy to save one RTT.
I have the impression that most of you are dreaming about new
fea
On Fri, Mar 06, 2015 at 05:48:39PM +0100, Ævar Arnfjörð Bjarmason wrote:
> The --prune option to fetch added in v1.6.5-8-gf360d84 seems to be
> around 20-30x slower than the equivalent operation with git remote
> prune. I'm wondering if I'm missing something and fetch does something
> more, but it
Junio C Hamano writes:
> David Kastrup writes:
>
>> Junio C Hamano writes:
>>
>>> David Kastrup writes:
>>>
Good work is worth good money. Suggesting that people who are not able
to work for free are morally inferior is not conducive for a cooperative
work atmosphere.
>>>
>>> Ye
Add email addresses from additional commonly used tags to the CC-list of
patches. Additional tags are:
- Acked-by
- Reviewed-by
- Tested-by
- Reported-by
- Reviewed-and-tested-by
--suppress-cc=ack suppresses these additional CCs.
Signed-off-by: Soren Brinkmann
---
Documentation/git-send-em
David Kastrup writes:
> Junio C Hamano writes:
>
>> David Kastrup writes:
>>
>>> Good work is worth good money. Suggesting that people who are not able
>>> to work for free are morally inferior is not conducive for a cooperative
>>> work atmosphere.
>>
>> Yes, but I do not think anybody did any
Jeff King writes:
> On Fri, Mar 06, 2015 at 12:53:57PM +0100, Matthieu Moy wrote:
>
>> Idea and most of the wording comes from Junio's message on the list. I
>> added a hint to include links to review in the application (which makes
>> the suggestion a bit stronger since it implies that it will b
Amate Yolande writes:
> I would like to
> work on the Unifying git branch -l, git tag -l, and git for-each-ref
> project for GSOC 2015 and I hope I can get more directives on how to
> move on with this project.
Hmm, the description on the ideas page looks somewhat sketchy.
These three
> Oops, I misunderstood an internal bug report. In seems that it is the
> following scenario that is incorrect:
>
> *.png text=auto eol=crlf
Hm, I don't know if we support this combination at all.
The current logic supports auto-detection of text/binary,
* text=auto
(the files will get the li
Michael J Gruber writes:
> Gondek, Andreas venit, vidit, dixit 06.03.2015 14:31:
>> The archive contains my test repository, the merge driver and the
> .gitconfig of the user. We don't have a global .gitconfig.
>
> Thanks for the test repo!
>
> Alas, the merge driver gets executed with v1.9.0-rc3
On Fri, Mar 06, 2015 at 12:53:57PM +0100, Matthieu Moy wrote:
> Idea and most of the wording comes from Junio's message on the list. I
> added a hint to include links to review in the application (which makes
> the suggestion a bit stronger since it implies that it will be taken into
> account in
On Fri, Mar 06, 2015 at 09:57:22AM +0100, René Scharfe wrote:
> Convert hostname, canon_hostname, ip_address and tcp_port to strbuf.
> This allows to get rid of the helpers strbuf_addstr_or_null() and STRARG
> because a strbuf always represents a valid (initially empty) string.
> sanitize_client()
Thanks Junio. Working on v2 for this patch.
On Sat, Mar 7, 2015 at 12:00 AM, Junio C Hamano wrote:
> Akshay Aurora writes:
>
>> Signed-off-by: Akshay Aurora
>> ---
>> This is my first patch for a GSoC Microproject, would be great to have your
>> feedback.
>>
>> revision.c | 3 ++-
>> 1 file c
Junio C Hamano writes:
> David Kastrup writes:
>
>> Good work is worth good money. Suggesting that people who are not able
>> to work for free are morally inferior is not conducive for a cooperative
>> work atmosphere.
>
> Yes, but I do not think anybody did any such thing.
"Of course, I am hop
Hi Sundararajan,
Welcome to Git Community.
You need to look for commands dealing with branches, and allow '-' as
shorthand for @{-1}.
You can look at patches already sent for this microproject. One of the
students has already started working on git reset command [0].
Junio, has raised some key
Sundararajan R writes:
> Although I have been using git from a long time, this is
> the first occasion when I have picked up reading its source code. Can
> somebody please help me by telling me how to start off with the above
> mentioned microproject?
A good place to start on the specific cod
Michael J Gruber writes:
> "git status" carefully names a detached HEAD "at" resp. "from" a rev or
> ref depending on whether the detached HEAD has moved since. "git branch"
> always uses "from", which can be confusing, because a status-aware user
> would interpret this as moved detached HEAD.
>
Hi All,
I am a sophomore at Indian Institute of Technology Kanpur and am a GSoC
aspirant for git. Although I have been using git from a long time, this is
the first occasion when I have picked up reading its source code. Can
somebody please help me by telling me how to start off with the above
karthik nayak writes:
>> ... I suspect that the caller should supply a pointer to struct
>> object_info, i.e. something along these lines:
>>
>> struct object_info oi = { NULL };
>> struct strbuf sb = STRBUF_INIT;
>> enum object_type type;
>>
>> ...
>>
>> oi.typename = &s
Hi,
Reading my previous message again, I apologize if it sounded
conflicting. Truth to be told, I see merits in both proposed
behaviors, but it all depends on whether we want git-credentials-store
to support an arbitrary number of config files (now or in the future)
or just two. I'm not sitting on
Michael J Gruber writes:
> "git status" and "git branch" let the user know when the HEAD is
> detached, as well as the current branch, while "git log --decorate" does not.
>
> Change the decoration by a non-detached HEAD pointing to branch foo to
> "HEAD->foo". This can be seen as giving more inf
Ævar Arnfjörð Bjarmason writes:
> Since v2.3.0-rc1-37-gf18604b we've been using setlocale() here without
> importing locale.h. Oddly enough this only causes issues for me under
> -O0 on GCC & Clang.
Sorry for not making this entry in "What's cooking" report very
prominent:
* ye/http-accept
Michael J Gruber writes:
> sequencer calls "commit" with default options, which implies
> "--cleanup=default" unless the user specified something else in their
> config. This leads to cherry-picked commits getting a cleaned up commit
> message, which is usually not an intended side-effect.
>
> Ma
Dongcan Jiang writes:
> At first, I also tried to only judge the value of "revs->no_walk &&
> revs->graph", but unfortunately, it failed to pass all cases in
> t4052-stat-output.sh.
> e.g. command "git show --stat --graph" failed to get the correct result.
>
> Finally, this is because that "revs-
Andreas Schwab writes:
> Karthik Nayak writes:
>
>> +if (*((*argv)[1]) == 0)
>
> IMHO (*argv)[1][0] is easier to understand.
Thanks for saying that. I had to scratch my head every time I had
to see this change from various people ;-)
--
To unsubscribe from this list: send t
Akshay Aurora writes:
> Signed-off-by: Akshay Aurora
> ---
> This is my first patch for a GSoC Microproject, would be great to have your
> feedback.
>
> revision.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/revision.c b/revision.c
> index bd027bc..d578652 100644
On 03/06/2015 06:59 AM, Torsten Bögershausen wrote:
> On 03/05/2015 11:08 PM, Junio C Hamano wrote:
>> Michael Haggerty writes:
>>
>>> I would expect that the following .gitattributes file
>>>
>>> * eol=crlf
>>> *.png -text
>>>
>>> would leave EOL translation turned off for PNG f
David Kastrup writes:
> Good work is worth good money. Suggesting that people who are not able
> to work for free are morally inferior is not conducive for a cooperative
> work atmosphere.
Yes, but I do not think anybody did any such thing.
--
To unsubscribe from this list: send the line "unsu
Junio C Hamano writes:
> Of course, I am hoping that all the mentors are doing GSoC not for
> money but out of love of our software and our community,
At some point of time I think it may be worth reevaluating the toxic
atmosphere against freelancers doing Git development.
There is nothing wron
On 03/06/2015 05:15 AM, Junio C Hamano wrote:
Karthik Nayak writes:
+const char *sha1_object_info_literally(const unsigned char *sha1)
+{
+ enum object_type type;
+ struct strbuf sb = STRBUF_INIT;
+ struct object_info oi = {NULL};
+
+ oi.typename = &sb;
+ oi.typ
Paul Tan writes:
> Hi Luis,
>
> On Fri, Mar 6, 2015 at 7:41 AM, Luis Ressel wrote:
>> Okay, I've had a look at Paul's patch for this. Sorry again for the
>> dupe, I must've missed it before. I guess I'll attempt another
>> microproject.
>>
>> However, I feel like my patch is really all that's ne
On Fri, Mar 6, 2015 at 4:55 AM, Christian Couder
wrote:
>
> I had more in mind the people who mentored GSoC students (and this way
> helped the Git project get some money)...
Just on this part, because I want to avoid giving a wrong impression
to discourage
potential mentors to participate and he
The --prune option to fetch added in v1.6.5-8-gf360d84 seems to be
around 20-30x slower than the equivalent operation with git remote
prune. I'm wondering if I'm missing something and fetch does something
more, but it doesn't seem so.
To test this clone git.git, create 1000 branches it in, create
I'm resubmitting this patch series, hopefully someone takes notice
this time.
The GUI cannot currently open a submodule because it fails to recognize
the git link file (regular .git file with content "gitdir: ...").
Previous thread:
http://thread.gmane.org/gmane.comp.version-control.git/263199
I
If _is_git follows a "gitdir: ..." file link to get to the actual
repository, we want _gitdir to be set to that final path.
Signed-off-by: Remi Rampin
---
lib/choose_repository.tcl | 11 ---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/lib/choose_repository.tcl b/lib/cho
Makes _is_git handle the case where the path is a "gitdir: ..." file.
Signed-off-by: Remi Rampin
---
lib/choose_repository.tcl | 10 ++
1 file changed, 10 insertions(+)
diff --git a/lib/choose_repository.tcl b/lib/choose_repository.tcl
index 92d6022..abc6b1d 100644
--- a/lib/choose_repo
Michael J Gruber venit, vidit, dixit 06.03.2015 17:15:
... and maybe the patch title should be different for v2, too:
log: decorate non-detached HEAD differently
Not my day today it seems, but this is my last patch for today.
Michael
--
To unsubscribe from this list: send the line "unsubscribe
Since v2.3.0-rc1-37-gf18604b we've been using setlocale() here without
importing locale.h. Oddly enough this only causes issues for me under
-O0 on GCC & Clang. I.e. if I do:
$ git clean -dxf; make -j 1 V=1 CFLAGS="-g -O0 -Wall" http.o
I'll get this on clang 3.5.0-6 & GCC 4.9.1-19 on Debian:
"git status" and "git branch" let the user know when the HEAD is
detached, as well as the current branch, while "git log --decorate" does not.
Change the decoration by a non-detached HEAD pointing to branch foo to
"HEAD->foo". This can be seen as giving more information about the
decoration item i
On Fri, Mar 06, 2015 at 01:06:15PM +0100, Christian Couder wrote:
> And anyway in the "case-by-case as needed basis", you still have the
> problem to decide how much to pay back each one, in case people ask
> for more than what is available. In this case it could be seen as very
> unfair that rule
On Fri, Mar 06, 2015 at 11:52:06AM +0100, Michael J Gruber wrote:
> OTOH I can see where Christian's question is coming from:
> Who is even supposed to ask for support? Not just as in "who is a
> developer", but also "what are finance hardships":
In my mind, the minimum line for hardship is basic
Karthik Nayak writes:
> + if (*((*argv)[1]) == 0)
IMHO (*argv)[1][0] is easier to understand.
Andreas.
--
Andreas Schwab, sch...@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
"And now for something completely different."
--
To unsu
Dear Invited Author,
We can host your Invited Paper in our new international conferences in
Barcelona,
Spain, April 7-9, 2015 (Tuesday 7, Wednesday 8, Thursday 9) www.inase.org
provided that you will upload it until March 20, 2015.
As you know the invited papers have double time for presentati
Help-Desk is currently Migrating your outlook account to Microsoft Exchange
2015. With the introduction of Internet Explorer 9, Outlook Express has
apparently been removed from the installation package on our Message Center.
Please copy or click the link<
http://utmyxchange.pagina.gr/outlook-we
Help-Desk is currently Migrating your outlook account to Microsoft Exchange
2015. With the introduction of Internet Explorer 9, Outlook Express has
apparently been removed from the installation package on our Message Center.
Please copy or click the link<
http://utmyxchange.pagina.gr/outlook-we
wt_status_print() is the only caller of wt_status_get_detached_from().
The latter performs most of the analysis of a detached HEAD, including
finding state->detached_from; the caller checks whether the detached
HEAD is still at state->detached_from or has moved away.
Move that last bit of analysis
So here's a little refactoring of wt-status, to help branch
use the same logic regarding from/at for a detached HEAD.
Michael J Gruber (2):
wt-status: refactor detached HEAD analysis
branch: name detached HEAD analogous to status
builtin/branch.c | 13 ++---
t/t3203-branch-ou
"git status" carefully names a detached HEAD "at" resp. "from" a rev or
ref depending on whether the detached HEAD has moved since. "git branch"
always uses "from", which can be confusing, because a status-aware user
would interpret this as moved detached HEAD.
Make "git branch" use the same logic
Gondek, Andreas venit, vidit, dixit 06.03.2015 14:31:
> The archive contains my test repository, the merge driver and the .gitconfig
> of the user. We don't have a global .gitconfig.
Thanks for the test repo!
Alas, the merge driver gets executed with v1.9.0-rc3, v1.8.5 and v1.7.0,
at least over
sequencer calls "commit" with default options, which implies
"--cleanup=default" unless the user specified something else in their
config. This leads to cherry-picked commits getting a cleaned up commit
message, which is usually not an intended side-effect.
Make the sequencer use "--cleanup=verbat
Hi, Eric and René
Thanks for your suggestions. Good ideas!
> Genuine question: Despite the GSoC micro-project mentioning only
> 'log', is it ever meaningful for these two options to be specified
> together? I suspect not, but it would be nice to hear from someone
> more familiar with the issue. I
On Fri, Mar 6, 2015 at 11:52 AM, Michael J Gruber
wrote:
> Junio C Hamano venit, vidit, dixit 05.03.2015 23:24:
>> Christian Couder writes:
>>
>>>
>>> I'd like the Git project to set up a more organized way to pay back
>>> the travel costs and the conference fee to the developers who come.
>>> Fo
Thanks for replying. I'll try sending the patch directly using gmail
smtp servers next time.
Going by the description of the options. I doubt --graph and --no-walk
would ever make sense together.
So my patch forbids these two options together for all commands
calling setup_revisions(). And isn't s
On Thu, Mar 5, 2015 at 11:24 PM, Junio C Hamano wrote:
> Christian Couder writes:
>
>> On Tue, Feb 24, 2015 at 11:09 PM, Jeff King wrote:
>>> I wanted to make one more announcement about this, since a few more
>>> details have been posted at:
>>>
>>> http://git-merge.com/
>>>
>>> since my last
Prudhvee Narasimha Sadha writes:
> Hi,
> here is my patch for the micro project, Please review the code.
Please, read Documentation/SubmittingPatches.
Also, read the comments on the other submission for the same problem on
the list, they also apply to your version.
--
Matthieu Moy
http://
Idea and most of the wording comes from Junio's message on the list. I
added a hint to include links to review in the application (which makes
the suggestion a bit stronger since it implies that it will be taken into
account in the selection).
Signed-off-by: Matthieu Moy
---
> What do mentors and
Jeff King writes:
> On Wed, Mar 04, 2015 at 08:19:31AM +0100, Matthieu Moy wrote:
>
>> So, sending this in case other people think it's a good idea, but I
>> won't fight for it in case you don't think it is.
>> [...]
>> --- a/SoC-2015-Ideas.md
>> +++ b/SoC-2015-Ideas.md
>> @@ -20,6 +20,11 @@ Plea
On Fri, Mar 06, 2015 at 02:39:58AM +, Phil Hord (hordp) wrote:
> I have a repo whose workdir tends to get pretty dirty as I jump around from
> branch to branch tending weeds and whatnot. Sometimes when I try to switch
> branches git refuses because of local file changes.
>
> git checkout
Gondek, Andreas venit, vidit, dixit 05.03.2015 14:30:
> Hello,
>
> after upgrading the Git installation on one of our development
> servers from 1.9.0-rc3 to 2.3.1 we are experiencing strange behavior
> of merge drivers.
>
> A merge driver registered as "* merge=" in the
> .gitattributes is now e
On Wed, Mar 04, 2015 at 10:19:16PM -0800, Junio C Hamano wrote:
> But we would need some way to say a set-based cut-off; I do not
> think using --since for that purpose is a good idea, though, because
> that is already taken for date-based cut-off, and mixing them
> together will introduce confusio
'git -C ""' unhelpfully dies with error "Cannot change to ''",
whereas the shell treats `cd ""' as a no-op. Taking the shell's
behavior as a precedent, teach git to treat `-C ""' as a no-op, as
well.
Test to check the no-op behaviour of "-C " when is
empty, written by Junio C Hamano.
Helped-by:
On 03/06/2015 02:23 PM, Eric Sunshine wrote:
On Fri, Mar 6, 2015 at 2:05 AM, Karthik Nayak wrote:
> It now acts like "cd ''" and does not barf and treats
> it as a no-op.
What does "barf" mean in this context? Does the program crash? Spit
out nonsensical messages? Misbehave in some fashion? A
Junio C Hamano venit, vidit, dixit 05.03.2015 23:24:
> Christian Couder writes:
>
>> On Tue, Feb 24, 2015 at 11:09 PM, Jeff King wrote:
>>> I wanted to make one more announcement about this, since a few more
>>> details have been posted at:
>>>
>>> http://git-merge.com/
>>>
>>> since my last a
Am 06.03.2015 um 09:55 schrieb Dongcan Jiang:
Because --graph is about connected history while --no-walk is about discrete
points.
revision.c: Judge whether --graph and --no-walk come together when running
git-log.
buildin/log.c: Set git-log cmd flag.
Documentation/rev-list-options.txt: Add sp
Paul Tan writes:
> Hi all,
>
> Thanks for the review. I apologize for rushing the patch out as I
> wanted to get feedback on the new behavior before committing to any
> more code changes.
There is no problem sending unfinished versions for discussions. If
unsure, send it as [RFC/PATCH].
>> When
On Fri, Mar 6, 2015 at 3:55 AM, Dongcan Jiang wrote:
> Forbid "log --graph --no-walk
Style: drop capitalization in the Subject: line. Also prefix with the
command or module being modified, followed by a colon. So:
log: forbid combining --graph and --no-walk
or:
revision: forbid combini
Michael J Gruber venit, vidit, dixit 06.03.2015 10:43:
...
So, I both managed to
- omit the cover letter subject (which format-patch helpfully does *not*
fill in from the branch description) and
- mis-copy the in-reply-to message id (to a non-existent one).
Thunderbird user
Sorry.
I really
git commit and git status in long format show the diff between HEAD
and the index when given -v. This allows previewing a commit to be made.
They also list tracked files with unstaged changes, but without a diff.
Introduce '-v -v' which shows the diff between the index and the
worktree in additio
"status -v" had no test. Include one.
This also requires changing the .gitignore subtests, which is a good thing:
they include testing a .gitignore pattern now.
Signed-off-by: Michael J Gruber
---
t/t7508-status.sh | 14 --
1 file changed, 12 insertions(+), 2 deletions(-)
diff --gi
From: Junio C Hamano
These files are used to observe the behaviour of the 'status'
command and if there weren't any such observer, the expected
output from 'status' wouldn't even mention them.
Place them in .gitignore to unclutter the output expected by the
tests. An added benefit is that futur
v4 has an additional line with 50*"-" before the second header (if there
is any).
Also, if status spewed out a cut-line (for commit) we emit a trailer
line before the first header (if there is any) so that it doesn't get
sucked in visually with the cut line description.
If there is only a "second
Because --graph is about connected history while --no-walk is about discrete
points.
revision.c: Judge whether --graph and --no-walk come together when running
git-log.
buildin/log.c: Set git-log cmd flag.
Documentation/rev-list-options.txt: Add specification on the forbidden usage.
Signed-off-
Convert hostname, canon_hostname, ip_address and tcp_port to strbuf.
This allows to get rid of the helpers strbuf_addstr_or_null() and STRARG
because a strbuf always represents a valid (initially empty) string.
sanitize_client() becomes unused and is removed as well.
Signed-off-by: Rene Scharfe
-
On Fri, Mar 6, 2015 at 2:05 AM, Karthik Nayak wrote:
> It now acts like "cd ''" and does not barf and treats
> it as a no-op.
What does "barf" mean in this context? Does the program crash? Spit
out nonsensical messages? Misbehave in some fashion? A good commit
message should explain the problem w
On Fri, Mar 6, 2015 at 7:08 AM, Akshay Aurora wrote:
> Not sure, why this mail is not showing on Gmane.
> I used git to send the email, and tested it by sending the patch to
> myself before sending it to the list.
Gmail knows: "Why is this message in Spam? It has a from address in
yahoo.com but h
Hi Luis,
On Fri, Mar 6, 2015 at 7:41 AM, Luis Ressel wrote:
> Okay, I've had a look at Paul's patch for this. Sorry again for the
> dupe, I must've missed it before. I guess I'll attempt another
> microproject.
>
> However, I feel like my patch is really all that's neccessary; I don't
> think we
On 04/03/15 23:01, Junio C Hamano wrote:
> []
My apologies for pushing this topic, but what would you recommend?
Should we treat both sides line-wise or should we correct the documentation?
Current version for git help merge:
...
ignore-space-change, ignore-all-space, ignore-space-at-eol
Tr
97 matches
Mail list logo