| From | Subject | Date |
|---|---|---|
| Junio C Hamano | Jan 4, 12:18 pm 2011 | |
| Erik Faye-Lund | Re: [PATCH] daemon: support <directory> arguments again
Looks good to me. Thanks for finding and fixing it!
--
| Jan 4, 5:42 am 2011 |
| Jonathan Nieder | [PATCH] daemon: support <directory> arguments again
Ever since v1.7.4-rc0~125^2~8 (daemon: use run-command api for async
serving, 2010-11-04), git daemon spawns child processes instead of
forking to serve requests. The child processes learn that they are
being run for this purpose from the presence of the --serve command
line flag.
When running with <ok_path> arguments, the --serve flag is treated
as one of the path arguments and the special child behavior does
not kick in. So the child becomes an ordinary git daemon process,
notices that all ...
| Jan 3, 9:04 pm 2011 |
| Jakub Narebski | [RFC PATCH v7 2.5/9] gitweb: Make die_error just die, an ...
Unify error handling by treating errors from Perl (and thrown early in
process using 'die STRING'), and errors from gitweb in the same way.
This means that in both cases error page is generated after an error
is caught in run() subroutine.
die_error() subroutine is now split into three: gen_error() which
massages parameters (escaping HTML, turning HTTP status number into
full HTTP status code), die_error() which uses gen_error() and just
throws an error (and does not generate an error page), ...
| Jan 3, 5:35 pm 2011 |
| Jakub Narebski | Re: [RFC PATCH v7 11/9] [PoC] gitweb/lib - tee, i.e. pri ...
It might be true that tee-ing is bad for very large sites, as it
increases load a bit in those (I think) extremly rare cases where
clients concurrently access the very same error page. But it might
be a solution for those in between cases. I think that incrementally
generated page is better progress indicator than just "Generating..."
page.
Anyway this proof of concept patch is to show how such thing should
be implemented. I don't think that it makes things a lot more complex;
in this ...
| Jan 3, 5:28 pm 2011 |
| Jakub Narebski | Re: [RFC PATCH v7 11/9] [PoC] gitweb/lib - tee, i.e. pri ...
I was not sure how Perl reacts to ENOSPC (No space left on device),
which I think it is only error that can be generated in flight as
cache is being generated (or as gitweb output is printed i.e. sent
to browser and captured/tee-ed i.e. saved to cache entry file), so
I have checked this (using loopback to create small filesystem).
The outcomes one worry about are the following:
* Perl dies during printing - this leads to broken page send to
browser, and no cache entry generated
* Perl ...
| Jan 4, 6:20 am 2011 |
| Thomas Rast | Re: [PATCH 2/3] Fixes bug: git-svn: svn.pathnameencoding ...
I'll let Eric judge whether loading the encoding here is the right
fix, but here too the commit message states only what is broken, not
why you fixed it that way. Can you elaborate a bit?
--
Thomas Rast
trast@{inf,student}.ethz.ch
--
| Jan 4, 10:18 am 2011 |
| Thomas Rast | Re: [PATCH 1/3] Fixes bug: git-diff: class methods are n ...
As Junio already said, please provide a real name for the sign-off.
But I also found the commit message and content confusing, probably
because I haven't programmed Pascal for 15 years.
You said
But the last line very conspicuously already mentions 'class', so why
does it fail?
I had to look up a bit of Pascal syntax. Google helped with
http://www.freepascal.org/docs-html/ref/ref.html
which answers this. Also, as stated in SubmittingPatches, we
generally word the messages as ...
| Jan 4, 10:13 am 2011 |
| Robin H. Johnson | Re: [PATCH v2] Fix false positives in t3404 due to SHELL ...
git-rebase--interactive.sh:
====
${SHELL:-@SHELL_PATH@} -c "$rest" # Actual execution
status=$?
if test "$status" -ne 0
then
warn "Execution failed: $rest"
====
This always triggers with SHELL=/bin/false if SHELL is unset or empty,
SHELL_PATH gets substituted, which tends to be the correct /bin/sh.
--
Robin Hugh Johnson
Gentoo Linux: Developer, Trustee & Infrastructure Lead
E-Mail : robbat2@gentoo.org
GnuPG FP : 11AC BA4F 4778 E3F6 E4ED F38E B27B 944E 3488 4E85
| Jan 4, 1:35 pm 2011 |
| Jonathan Nieder | Re: [PATCH v2] Fix false positives in t3404 due to SHELL ...
Isn't that how export works in all Bourne-style shells? For example:
$ env var=outside dash -c '
var=inside;
dash -c "echo \$var"
'
inside
$
Maybe in the failing case SHELL was not exported but just set to
/bin/false in .bashrc or similar?
--
| Jan 4, 3:58 pm 2011 |
| Vallon, Justin | RE: [PATCH v2] Fix false positives in t3404 due to SHELL ...
# "exec" commands are ran with the user shell by default, but this may
# be non-POSIX. For example, if SHELL=zsh then ">file" doesn't work
# to create a file. Unseting SHELL avoids such non-portable behavior
Perl's exec and system do not use SHELL (as far as perlfunc states). It uses /bin/sh -c "$cmd", or a platform-dependent equivalent.
$SHELL is typically only used when a program wants to invoke a user-shell (ie: editor shell-escape, xterm, typescript, screen).
How was SHELL=/bin/false ...
| Jan 4, 7:43 am 2011 |
| Matthieu Moy | Re: [PATCH v2] Fix false positives in t3404 due to SHELL ...
The explanation is in the comment right above the modification in the
(my bad, I wrote this SHELL= without exporting it. Since bash
re-exports already exported variables when they are assigned, and my
/bin/sh points to bash, I didn't notice)
--
Matthieu Moy
http://www-verimag.imag.fr/~moy/
--
| Jan 4, 3:28 pm 2011 |
| Alexander Gladysh | Re: False positives in git diff-index
Nobody is interested?
Is there a way I can get some help with this issue?
Thanks,
Alexander.
--
| Jan 4, 2:45 am 2011 |
| Alexander Gladysh | Re: False positives in git diff-index
I understand that. But is the second part of requirement is such a
large problem?
I remember, somebody advised me to use this tool, when I reported some
bug some time (maybe a year) ago.
But, I'm afraid, I do not know how to separate my deployment tool
logic (which reproduces the bug) from the repository data. If I did
know, I'd come up with a minimal example already. Nothing trivial
"along the lines", that I tried so far, does reproduce it.
Alexander.
--
| Jan 4, 7:46 am 2011 |
| Jakub Narebski | Re: False positives in git diff-index
Well, at least it is not what version control system is about; git is
designed towards manual and not automatic commits, and version control
But it is reproductible to you: from what I understand you didn't find
some minimal example to reproduce this issue without need for access
your proprietary build process.
AG> Unfortunately I can not share it or create a minimal example ? the
AG> case is triggered by a custom complicated automated build process on a
To debug it, if you cannot do it ...
| Jan 4, 7:08 am 2011 |
| Alexander Gladysh | Re: False positives in git diff-index
Committing few megabytes of data several times per second is
Thank you for your opinion.
I view this particular situation as follows:
1. I found a reproducible case for a hard to catch bug in Git. (This
is a bug in Git, not in my build process.) This bug in its
intermittent form annoyed me for quite some time — several months at
least — and is likely to annoy other users. (I'm not *that* unique!)
2. I can live happily with sleep(0.2) in my deployment code (while
this is not very ...
| Jan 4, 5:01 am 2011 |
| Zenaan Harkness | Re: False positives in git diff-index
Your problem set appears that you have a rather gnarly corner case
issue, arising from your custom build processes. Although git really
is amazing, I believe you may well be pushing git to its technological
limits.
So your problem could be quite hard to debug, whilst being distinctly
difficult to ascertain the root causes.
It also appears that your custom complicated build process is likely
protecting, or at least integral to, your high value corporate process
assets.
So _in this case_ ...
| Jan 4, 4:47 am 2011 |
| Jonathan Nieder | Re: [PATCH 4/4] vcs-svn: improve reporting of input errors
This should have said "if (!val)". Sorry for the confusion.
--
| Jan 4, 3:16 am 2011 |
| Thomas Rast | Re: [PATCH 00/31] Refactor rebase
Thanks a lot for undertaking this effort! I just finished looking
through the entire series, and it all seems sane to me. Apart from
j6t's reply I think we're mostly nit-picking or agreeing with you, and
this is the first iteration!
--
Thomas Rast
trast@{inf,student}.ethz.ch
--
| Jan 4, 12:57 pm 2011 |
| Thomas Rast | Re: [PATCH 08/31] rebase: align variable names
AFAICS this is partly about spelling the variables in lowercase
instead of all-caps.
Wouldn't it be nicer to simply downcase *all* variables, so that the
[...]
--
Thomas Rast
trast@{inf,student}.ethz.ch
--
| Jan 4, 12:12 pm 2011 |
| Thomas Rast | Re: [PATCH 24/31] rebase: extract code for writing basic state
Do we have to cater to the use-case where the user starts a rebase,
downgrades at a conflict, and then continues?
If not, you could read 'orig-head' first and fall back to 'head', only
writing 'orig-head' in the state saving independent of the mode. That
would give us the chance of removing the redundancy at some point.
--
Thomas Rast
trast@{inf,student}.ethz.ch
--
| Jan 4, 12:19 pm 2011 |
| Thomas Rast | Re: [PATCH 26/31] rebase: remember strategy and strategy ...
AFAICS rebase -i currently only uses the strategy when dealing with
multiple parents, i.e., in --preserve-merges mode. I think
git-cherry-pick needs to learn about the -s and -X options, and then
it'll be a simple matter of passing them along.
--
Thomas Rast
trast@{inf,student}.ethz.ch
--
| Jan 4, 12:27 pm 2011 |
| Thomas Rast | Re: [RFC PATCH 3/3] filter-branch: support --submodule-filter
Please don't top-post. (There's nothing wrong with snipping the whole
message if it does not really relate, as in this case.)
Ccs for the patch at the end; I don't really care much but I could
roll all of it into a sort of "submodule tools" series for g-f-b, so
if you like it, speak up.
Not really.
You can dig through the mailing list archives and also e.g.
gitworkflows to see how Junio handles incoming patches, but for series
like this you usually have to apply them yourself. I ...
| Jan 4, 6:14 am 2011 |
| Junio C Hamano | Re: [RFC PATCH 3/3] filter-branch: support --submodule-filter
Just a style, but I find
if test -n "$split_submodule"
then
sub_differs= sub_parents= sub_commit=
easier to read. Not a biggie, as the neighbourhood in the script already
if test -z "$parents" && test -n "$submodule"
then
sub_differs=t
... so we can just pick from the first parent and know all of them are the
same (could be empty which also is fine). Good.
--
| Jan 4, 12:18 pm 2011 |
| Junio C Hamano | Re: [PATCH] Fix typos in the documentation
Thanks for your attention to the details. Will apply.
--
| Jan 4, 12:18 pm 2011 |
| Junio C Hamano | Re: gitattributes don't work
Why not "xmac/gen/* -diff" or even "xmac/gen/*.xmac -diff"?
--
| Jan 4, 11:33 am 2011 |
| Marcin =?iso-8859-2? ... | Re: gitattributes don't work
I think that for the time being at least the manual page must change to
reflect reality.
--
| Jan 3, 7:16 pm 2011 |
| Junio C Hamano | Re: [RFC/PATCH] Documentation/technical: document quoting API
Heh, I didn't know about the "both" case. That is probably unintended
misfeature that would not hurt but would not be useful in practice either
Just for the record, "Avoid dqdq in the middle" was never the motivation;
you can run two no_dq invocations and put dq around the result yourself.
The main motivation for using this, before the strbuf was widely used, was
to avoid having to allocate memory only to call quote_c_style, because it
"... if you are preparing a command line to give to ...
| Jan 4, 12:21 pm 2011 |
| Neal Kreitzinger | Re: clone --bare vs push
"Levend Sayar" <levendsayar@gmail.com> wrote in message
you can also use the file:// url format to create a complete copy and not
use hardlinks. see git-clone manpage.
e.g. git clone --bare file:///fullpathto/X y.git
v/r,
Neal
--
| Jan 3, 9:40 pm 2011 |
| Neal Kreitzinger | Re: clone --bare vs push
This is a "reply all" from thunderbird. This looks like it is doing the
cc correctly...
v/r,
Neal
--
| Jan 3, 10:29 pm 2011 |
| Jonathan Nieder | Re: clone --bare vs push
Thanks, that's useful; cc-ing Levend.
[Side note: I wrote in the past:
| In traditional newsgroups it seems to be most common to just reply to
| the author by mail or follow-up to the group, so I wouldn't feel too
| bad.
but probably that was unclear of me. The convention on _this_ list[1] is
to reply to all participants in a thread, so new participants do not
need to subscribe if they don't want to. Thunderbird (e.g.) seems to
be good at doing that for what it's worth.]
[1] at ...
| Jan 3, 9:58 pm 2011 |
| Jonathan Nieder | Re: git-daemon serving repos with repo.git/git-daemon-ex ...
Also because the repositories are world readable. I don't know what
I was thinking; I should get some sleep.
Thanks again for reporting and good luck.
Jonathan
--
| Jan 3, 8:09 pm 2011 |
| John Griessen | Re: git-daemon serving repos with repo.git/git-daemon-ex ...
It would be able, since I used
sudo strace -o strace.out /usr/lib/git-core/git-daemon --verbose --strict-paths --user=git --group=gitosis /srv/gitosis/repositories
git-daemon was asked to run as --user=git --group=gitosis, so it had read permissions and
I tried this
sudo /usr/lib/git-core/git-daemon --verbose --strict-paths --user=git --group=gitosis /srv/gitosis/repositories &>git-daemon-err.log
vking@mail:~$ cat git-daemon-err.log
and git-daemon-err.log was empty. Not the same as ...
| Jan 3, 6:58 pm 2011 |
| Jonathan Nieder | Re: git-daemon serving repos with repo.git/git-daemon-ex ...
bind(3, {sa_family=AF_INET, sin_port=htons(9418), sin_addr=inet_addr("0.0.0.0")}, 16) = -1 EADDRINUSE (Address already in use)
--
| Jan 3, 7:11 pm 2011 |
| Jonathan Nieder | [PATCH 0/2] gitweb: make logo optional
These patches were last seen in the instaweb 1.7.1 maintenance
thread[1] but I believe they are independently useful. The
idea is to allow disabling the logo in gitweb.
Jonathan Nieder (2):
gitweb: skip logo in atom feed when there is none
gitweb: make logo optional
gitweb/gitweb.perl | 15 ++++++++++-----
1 files changed, 10 insertions(+), 5 deletions(-)
[1] http://thread.gmane.org/gmane.comp.version-control.git/155224
--
| Jan 3, 10:02 pm 2011 |
| Jonathan Nieder | [PATCH 1/2] gitweb: skip logo in atom feed when there is none
Date: Fri, 3 Sep 2010 19:44:39 -0500
With v1.5.0-rc0~169 (gitweb: Fix Atom feed <logo>: it is $logo,
not $logo_url, 2006-12-04), the logo URI to be written to Atom
feeds was corrected but the case of no logo forgotten.
Acked-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
---
gitweb/gitweb.perl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 4779618..c65af1a 100755
--- ...
| Jan 3, 10:02 pm 2011 |
| Jonathan Nieder | [PATCH 2/2] gitweb: make logo optional
Date: Fri, 3 Sep 2010 19:45:09 -0500
Some sites may not want to have a logo at all. In particular, git
instaweb can benefit from this.
While at it, use $cgi->img to simplify this code. (CGI.pm learned
most HTML4 tags by version 2.79, so this should be portable to perl
5.8, though I haven't tested.)
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
---
Eric liked an earlier version of this patch that did not use
$cgi->img.
gitweb/gitweb.perl | 13 +++++++++----
1 files changed, ...
| Jan 3, 10:05 pm 2011 |
| Jakub Narebski | Re: [PATCH 2/2] gitweb: make logo optional
Why do you think that git-instaweb can benefit from not having logo?
You need gitweb.css anyway, so it is not much more trouble to serve
corelist (Module::CoreList) says that Perl 5.8.0 has CGI.pm version 2.81;
IIRC gitweb requires something later than 5.8.0 for good support of
For what it is worth it:
Acked-by: Jakub Narebski <jnareb@gmail.com>
--
Jakub Narebski
Poland
--
| Jan 4, 4:52 am 2011 |
| Jonathan Nieder | Re: [PATCH 2/2] gitweb: make logo optional
Yep, that sentence is stale (it only applied in 1.7.1.x days) and
Thanks for looking it over.
--
| Jan 4, 9:29 am 2011 |
| Miles Bader | google code git support
New year's reminder: register your vote for native git support in google
code -- go to:
http://code.google.com/p/support/issues/detail?id=2454
and click the star in front of "Issue 2454: native git support"
-miles
--
Do not taunt Happy Fun Ball.
--
| Jan 3, 10:08 pm 2011 |
| Levend Sayar | git repo corruption
Hi, all.
We have a repo on a corporate server. The sysadmin changed access
rights of files on our repo by accedant.
Some directories have 2750 acces rights before, but he changed as
chmod -R 2770 *
Now when you make git status, every file that is tracked by git is said as
changed but not updated
So is there a way to get this back to normal ?
TIA
_lvnd_
(^_^)
--
| Jan 4, 2:10 am 2011 |
| Neal Kreitzinger | Re: git repo corruption
I assume the correct permissions for your tracked files should be 2750?
If so, then here's what I would do:
1. First make a copy of your repo and test these steps on the copy:
e.g. bare repo: cp -rvp repo.git repocopy.git
non-bare-repo: cp -rvp worktree worktreecopy
2. Then cd to the parent of the objects dir in you git repo:
e.g. bare repo: cd repocopy.git
non-bare repo: cd worktreecopy/.git
3. Then change the permissions of your objects dir:
chmod -R 2750 ...
| Jan 4, 2:42 pm 2011 |
| Drew Northup | Re: git repo corruption
Am I correct in guessing that this is not a bare repo?
--
-Drew Northup N1XIM
AKA RvnPhnx on OPN
________________________________________________
"As opposed to vegetable or mineral error?"
-John Pescatore, SANS NewsBites Vol. 12 Num. 59
--
| Jan 4, 5:34 am 2011 |
| Mathias Lafeldt | BUG: gitk fails to parse 1.7.4-rc0 version string
Looks like gitk doesn't like the "-rc0" suffix.
$ git --version
git version 1.7.4-rc0
$ gitk
Error in startup script: expected version number but got "1.7.4-rc0"
while executing
"package vcompare $git_version "1.6.6.2""
(file "/usr/local/bin/gitk" line 1)
I temporarily fixed it by hard-coding the version string:
diff --git a/gitk-git/gitk b/gitk-git/gitk
index e82c6bf..367446e 100644
--- a/gitk-git/gitk
+++ b/gitk-git/gitk
@@ -11581,7 +11581,7 @@ if {![info exists have_ttk]} ...
| Jan 4, 5:44 am 2011 |
| bolfo | weird github capitalization problem
Hello guys,
I am new at git and github, but I am collaborating on a netbeans java
project with someone else and we host our code on github.
I first installed everything on my laptop, coded some stuff and then pushed
to github. Apparently something went wrong because there was a new
directory, while at first the directory was OurProjectsources, there now was
a new directory called OurProjectSources. Weird since my local directory has
the s not capitalized.
I installed git on another PC and ...
| Jan 4, 6:04 am 2011 |
| Marcin =?iso-8859-2? ... | Re: [PATCH] gitattributes.txt: mention exceptions to git ...
After more carefully re-reading gitignore(5) I think that now I get it.
I presume that is is not possible to match certain pattern occurring
*anywhere* in the path.
Would it be possible to extend pattern format to include double-star
wildcard that matches anything including slashes ?
Like: **/whatever/**
Many tools (in java at least) and libraries support such extension to
globs. Unfortunately standard fnmatch(3) that's used by git is not one of
them, but glibc's implementation ...
| Jan 4, 2:17 pm 2011 |
| =?UTF-8?q?Nguy=E1=BB ... | [PATCH] gitattributes.txt: mention exceptions to gitigno ...
gitattr and .gitignore are supposed to use the same rules for matching
patterns. Unfortunately it's not exactly the same in reality. Mention
the differences so users won't be surprised, until gitattr gets
updates.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
---
2011/1/4 Marcin Wiśnicki <mwisnicki@gmail.com>:
> I think that for the time being at least the manual page must change to
> reflect reality.
Looks like changes will be more than just a few lines because ...
| Jan 4, 6:31 am 2011 |
| Michael J Gruber | Re: [PATCH] gitattributes.txt: mention exceptions to git ...
Cheers,
Michael
--
| Jan 4, 7:50 am 2011 |
| Marcin =?iso-8859-2? ... | Re: [PATCH] gitattributes.txt: mention exceptions to git ...
I'm afraid that is not all. The rules I've inferred:
1. No pattern will match directory tree.
2. It is only possible to match on path components.
3. If pattern contains slash it is treated as absolute.
Example for file: d1/d2/f1.c
Patterns that match:
*.c
d1/d2/*
/d1/d2/*
*/d2/*
*/*/*
Patterns that do not match but should:
d2/*
d2/
d2
d1/d2
/d1/d2
--
| Jan 4, 8:40 am 2011 |
| Junio C Hamano | Re: [PATCH] gitattributes.txt: mention exceptions to git ...
Not really. I'd rather see a handful of test cases added to t0003 to help
interested parties to see what is broken and what is not.
Quoting from Marcin's other message, assuming that "Patterns" are stored
With slashes, so this is anchored at the toplevel of the working tree, and
The same as above;, the leading '/' is only to make it explicit that it is
This shouldn't match unless it appears in d1/.gitattributes.
The presense of '/' makes the pattern anchored to the directory it ...
| Jan 4, 12:17 pm 2011 |
| Matthieu Moy | PostScript files: textconv and "git add -p"
Hi (and happy new year everybody !),
I have trouble setting up a comfortable configuration to version
PostScript files. The particularity they have is that they are "text
files" (i.e. git does not detect them as binary files by default, and
neither do tools like less, diff, ...), but not meant to be
human-readable.
If I do this:
,----[ .gitattributes ]
| *.ps diff=ps
`----
,----[ .gitconfig ]
| [diff "ps"]
| textconv=ps2ascii
`----
then I get the textconv niceness when ...
| Jan 4, 8:50 am 2011 |
| Thomas Rast | Re: [RFC][PATCH] git-send-email: added support for S/MIME
Does git-am need symmetric support to decode the message?
--
Thomas Rast
trast@{inf,student}.ethz.ch
--
| Jan 4, 12:36 pm 2011 |
| Junio C Hamano | Re: [RFC][PATCH] git-send-email: added support for S/MIME
The patch with so many "if ($sign) do this else do that" is too ugly
beyond words. I wonder if the surrounding code can be better
restructured.
--
| Jan 4, 12:22 pm 2011 |
| Roberto Sassu | [RFC][PATCH] git-send-email: added support for S/MIME
The script git-send-email.perl has been modified in order to add support
for messages with S/MIME format. First, the message body is written in a
temporary file and signed by OpenSSL with the X.509 certificate provided by
the user. Then the returned content is added to the previously parsed
header and the message is sent as the same for unsigned messages.
Usage:
git send-email -sign -signing-cert </path/of/PEM> <other options>
Signed-off-by: Roberto Sassu ...
| Jan 4, 9:02 am 2011 |
| John Griessen | debugging git clone via git-daemon "cannot handle d ...
I have a server running debian git-core, gitosis, git version 1.7.2.3 and local git version 1.7.2.3.
I've uninstalled git-daemon-run from the server for testing simplicity.
The server is running this:
sudo /usr/lib/git-core/git-daemon --verbose --strict-paths --user=git --group=gitosis /srv/gitosis/repositories &>git-daemon-err.log
when I try cloning from my local machine I get these results:
john@toolbench:~/EEProjects/test$ git clone git://mail.cibolo.us/gitosis-admin.git
Cloning ...
| Jan 4, 9:50 am 2011 |
| Hans-Christoph Steiner | Re: developing a modified Linux-style workflow
For me the biggest feature that I am looking for is the automatic
merging of commits, and second, having a branch that puts my
collection of patches/commits ahead of the Pd master so that its easy
to manage the patches. I don't think I see how I could do that with
this multiple branches idea. Is that possible?
.hc
----------------------------------------------------------------------------
I have the audacity to believe that peoples everywhere can have three
meals a ...
| Jan 4, 12:01 pm 2011 |
| Neal Kreitzinger | Re: developing a modified Linux-style workflow
I have _no_ experience using patches (in git or otherwise) to manage
change control, ie. git-am, git-format-patch, etc., as of yet...
That being said, FWIW, here is a suggestion based on the following
assumptions:
a. It sounds like Pd and Pd-extended only get merged once-in-a-while
(infrequently).
b. Pd is the main version in use, and Pd-extended is a future version
or a not-yet-widely-used version.
c. Pd-extended is based on Pd, but since the inception of Pd-extended
both Pd and ...
| Jan 4, 2:19 pm 2011 |
| Antonio Ospite | [PATCH v2] t/t9001-send-email.sh: fix '&&' chain in some tests
t/README recommends chaining test assertions.
Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
---
Hi sorry for the delay,
the only change wrt. v1 is the use of test_might_fail with
git config --unset as requested by Jonathan.
Note that in t9001-send-email.sh and other tests git config --unset is used
without the test_might_fail handler some other times, you might wat to check
this.
Thanks and best regards,
Antonio Ospite
http://ao2.it
t/t9001-send-email.sh | 8 ...
| Jan 4, 1:56 pm 2011 |
| previous day | today | next day |
|---|---|---|
| January 3, 2011 | January 4, 2011 | March 30, 2029 |
