| From | Subject | Date |
|---|---|---|
| Trans | Empty Directories
New to git...
Is it true there is no way to track empty directories?
Thanks,
T.
--
| Aug 15, 5:20 pm 2008 |
| Miklos Vajna | Aug 15, 5:46 pm 2008 | |
| Marcus Griep | Re: Empty Directories
Directly, no. An easy workaround is to drop an empty file
(such as a .gitignore) into the directory and track that.
Then the directory will come along for the ride.
--
Marcus Griep
GPG Key ID: 0x5E968152
——
http://www.boohaunt.net
את.ψο´
--
| Aug 15, 5:42 pm 2008 |
| Lars Noschinski | Ignoring whitespace for diff and rebase
Hello!
Sometimes, I use
git diff -b > ~/tmp/patch
git reset --hard HEAD
git apply ~/tmp/patch
to clean up all only-whitespace changes. But if there are files which
only differ on whitespace, git-diff produces an empty patch block
(what's the correct name for it?) like
diff --git a/hello b/hello
index f2aa86d..ce01362 100644
which git-apply refuses to apply. Is this behaviour of git-diff
intentional or should I try to cook up a patch?
Another combination wh...
| Aug 15, 2:59 pm 2008 |
| Shawn O. Pearce | [EGIT PATCH] Silently permit invalid ObjectIds during RefUpd...
If we try to parse objects which don't exist it may be because
we are trying to force deletion of a ref exactly because the
object the ref currently refers to has been pruned from the
object database already. Rather than fail with an exception
we should still permit the removal.
This also fixes the breakage in the unit tests introduced by
Charles' 5a318367 "Refactor of RefUpdate force ...". One of
the unit tests for RefUpdate is using a bad ObjectId as the
new value for the ref, and uses forceUp...
| Aug 15, 1:44 pm 2008 |
| Shawn O. Pearce | [EGIT PATCH 1/2] Refactor SSH key loading so we don't duplic...
We only want to read each private key once, so we cache the
names of the keys we have processed before, adding keys which
we have not yet seen. This allows us to alter add keys on
the fly and avoid duplication.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
---
.../jgit/transport/DefaultSshSessionFactory.java | 20 ++++++++++++++------
1 files changed, 14 insertions(+), 6 deletions(-)
diff --git a/org.spearce.jgit/src/org/spearce/jgit/transport/DefaultSshSessionFactory.java b/o...
| Aug 15, 1:35 pm 2008 |
| Shawn O. Pearce | [EGIT PATCH 2/2] Honor ~/.ssh/config whenever possible durin...
I rely on ~/.ssh/config to setup host aliases, especially for very
common destinations. For example I have the following on most of
my systems:
Host orcz
HostName repo.or.cz
User spearce
IdentityFile .ssh/id_orcz
as not every system I use has my local user name as "spearce". The
C Git transport honors these settings just fine for short URLs like
"orcz:/srv/git/egit.git" but jgit failed horribly on these as there
is no local system named "orcz" on any of my networks.
By reading (and...
| Aug 15, 1:35 pm 2008 |
| Guillaume Desmottes | [BUG] git rebase is confuse if conflict resolution doesn't p...
To reproduce:
- Rebase a branch "foo" on a branch "bar" in a way that there is a
conflict that you have to manually resolve.
- Run git diff and see the conflict
- Edit the conflicted file and remove all the conflicting bits (that
could be a valid resolution of the conflict)
- Now git diff produces an empty diff
- git add $CONFLICTED_FILE as you have resolve the conflict
- git rebase --continue
You get the following error:
No changes - did you forget to use 'git add'?
git status is empty as t...
| Aug 15, 1:00 pm 2008 |
| Junio C Hamano | Re: [BUG] git rebase is confuse if conflict resolution doesn...
I think you would need a bit more than that to trigger this "behaviour".
Your resolution needs to be such that it is identical to the HEAD where
the rebased change is applied to, iow, among the series of commits, the
final effect chosen by you from this particular one is not to do
anything. So, not just "Now git diff produces an empty diff" in the above
sequence, which merely means that the three-way --cc diff between the
conflicted parties are resolved by taking from one side, after that "git
add...
| Aug 15, 2:41 pm 2008 |
| Stephan Beyer | Re: [BUG] git rebase is confuse if conflict resolution doesn...
Hi,
I think this is no bug, since you would generate an empty commit, i.e
a commit with no changes at all. Usually you do not want such commits.
So git rebase --skip is perhaps what you want.
Regards,
Stephan
--
Stephan Beyer <s-beyer@gmx.net>, PGP 0x6EDDD207FCC5040F
--
| Aug 15, 2:24 pm 2008 |
| Marcus Griep | [PATCH] bash-completion: Add non-command git help files to b...
Git allows access to the gitattributes man page via `git help attributes`,
but this is not discoverable via the bash-completion mechanism. This
patch adds all current non-command man pages to the completion candidate
list.
Signed-off-by: Marcus Griep <marcus@griep.us>
---
By adding them to the help completion, man pages such as the tutorials, hooks,
and .gitattributes are more accessible to random discovery from bash-completion.
contrib/completion/git-completion.bash | 6 +++++-
...
| Aug 15, 12:15 pm 2008 |
| Junio C Hamano | Re: [PATCH] bash-completion: Add non-command git help files ...
I really do not think this belongs to completion. "git help topics"
perhaps.
--
| Aug 15, 2:21 pm 2008 |
| Marcus Griep | Re: [PATCH] bash-completion: Add non-command git help files ...
I'm not sure I grok what you mean here... These items are already accessible
from `git help`, they just aren't discoverable through bash-completion without
the patch.
--
Marcus Griep
GPG Key ID: 0x5E968152
——
http://www.boohaunt.net
את.ψο´
--
| Aug 15, 2:33 pm 2008 |
| Junio C Hamano | Re: [PATCH] bash-completion: Add non-command git help files ...
That is exactly what I mean. I do not think bloating shell completion to
enumerate what help topics there are when the user hits "git help <TAB>"
is a good idea to begin with. It is a maintenance nightmere for one
thing, and it does not help non-bash users.
$ git help
$ git help --all
are existing ways for you to get list of "command topics" that you can ask
the help system about, but I do not see a way to ask "git-help, please
tell me what topics that are not git-commands can I ask ...
| Aug 15, 2:50 pm 2008 |
| Pieter de Bie | Re: [PATCH] bash-completion: Add non-command git help files ...
How about something simple like this?
diff --git a/builtin-help.c b/builtin-help.c
index 391f749..a49b5c2 100644
--- a/builtin-help.c
+++ b/builtin-help.c
@@ -446,6 +446,11 @@ int cmd_help(int argc, const char **argv, const
char *prefix)
return 0;
}
+ if (!strcmp("man-path", argv[0])) {
+ printf("%s\n", GIT_MAN_PATH);
+ return 0;
+ }
+
switch (help_format) {
case HELP_FORMAT_MAN:
sh...
| Aug 15, 4:32 pm 2008 |
| Marcus Griep | Re: [PATCH] bash-completion: Add non-command git help files ...
Are you working on next? Even though I know next is the new
master. (master is soooo nearly last week. :-P)
I had a slightly different take. Your completion creates a 'k'
for gitk, which was suggested earlier in the thread suggested
is a bit harder to grok. This promotes 'git?' commands to use
'git?' rather than '?' without affecting things otherwise.
---
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index c0bf7aa..0bb0d79 100755
--- a/contrib...
| Aug 15, 5:17 pm 2008 |
| Marcus Griep | Re: [PATCH] bash-completion: Add non-command git help files ...
Gotcha. A static list buried in git-completion.bash would be a maintenance
headache. I can take a look at that some.
Would we also want to look at doing something similar with '--' option
completion, i.e. invoking the command with '-h' to get the usage and long
options, then building the completion list on that rather than the static
lists it uses now? The one downside to that is that some completions
include trailing '=', which wouldn't be present in a usage list.
--
Marcus Griep
GPG Key...
| Aug 15, 3:03 pm 2008 |
| Marcus Griep | [PATCH v2] bash-completion: Add non-command git help files t...
Git allows access to the gitattributes man page via `git help attributes`,
but this is not discoverable via the bash-completion mechanism. This
patch adds all current non-command man pages to the completion candidate
list.
Signed-off-by: Marcus Griep <marcus@griep.us>
---
By adding them to the help completion, man pages such as the tutorials, hooks,
and .gitattributes are more accessible to random discovery from bash-completion.
This patch also incorporates the suggestion that 'gitk'...
| Aug 15, 1:59 pm 2008 |
| Shawn O. Pearce | Aug 15, 2:00 pm 2008 | |
| Jonathan Nieder | Re: [PATCH] bash-completion: Add non-command git help files ...
Hi,
I think k should be gitk here :)
Regards,
Jonathan
--
| Aug 15, 1:38 pm 2008 |
| Marcus Griep | Re: [PATCH] bash-completion: Add non-command git help files ...
It can be either. In a bash-completion list, though, gitk would probably
be more recognizable. I'll rehash that one.
--
Marcus Griep
GPG Key ID: 0x5E968152
——
http://www.boohaunt.net
את.ψο´
--
| Aug 15, 1:53 pm 2008 |
| Shawn O. Pearce | [EGIT PATCH] Enable diff=java for all *.java source files
This (usually) gets more reasonable function headers to
appear in the header line for a diff hunk. Its slightly
better than the default C rules.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
---
.gitattributes | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
create mode 100644 .gitattributes
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..f57840b
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+*.java diff=java
--
1.6.0.rc3.250...
| Aug 15, 11:40 am 2008 |
| Eric Blake | [PATCH] Makefile: building git in cygwin 1.7.0
On platforms with $X, make removes any leftover scripts 'a' from
earlier builds if a new binary 'a.exe' is now built. However, on
cygwin 1.7.0, 'git' and 'git.exe' now consistently name the same file.
Test for file equality before attempting a remove, in order to avoid
nuking just-built binaries.
Signed-off-by: Eric Blake <ebb9@byu.net>
---
On cygwin 1.5.x, a script 'a' and binary 'a.exe' could co-exist in the same
directory, and exec'ing 'a' tended to favor the script over the binary - ...
| Aug 15, 11:01 am 2008 |
| Nguyễn Thái Ngọc | [PATCH 8/9] clone: support narrow checkout with --path option
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
---
builtin-clone.c | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/builtin-clone.c b/builtin-clone.c
index c0e3086..0fcf53d 100644
--- a/builtin-clone.c
+++ b/builtin-clone.c
@@ -36,6 +36,7 @@ static const char * const builtin_clone_usage[] = {
static int option_quiet, option_no_checkout, option_bare, option_mirror;
static int option_local, option_no_hardlinks, option_shared;
static ch...
| Aug 15, 10:27 am 2008 |
| Nguyễn Thái Ngọc | [PATCH 9/9] checkout: add new options to support narrow chec...
These options include:
--full: return to full checkout (default)
--path: narrow checkout to some areas according to given spec
--add-path/--remove-path: adjust current narrow checkout
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
---
builtin-checkout.c | 41 +++++++++++++++++++++++++++++++++++++++++
1 files changed, 41 insertions(+), 0 deletions(-)
diff --git a/builtin-checkout.c b/builtin-checkout.c
index e95eab9..f2254c6 100644
--- a/builtin-checkout.c
+++ b/bui...
| Aug 15, 10:27 am 2008 |
| Nguyễn Thái Ngọc | [PATCH 7/9] ls-files: add --narrow-match=spec option to test...
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
---
builtin-ls-files.c | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/builtin-ls-files.c b/builtin-ls-files.c
index bcb1536..0064f73 100644
--- a/builtin-ls-files.c
+++ b/builtin-ls-files.c
@@ -29,6 +29,7 @@ static const char **pathspec;
static int error_unmatch;
static char *ps_matched;
static const char *with_tree;
+static const char *narrow_spec;
static const char *tag_cached = ""...
| Aug 15, 10:26 am 2008 |
| Nguyễn Thái Ngọc | [PATCH 6/9] Add support for narrow checkout in unpack_trees()
This patch teaches unpack_trees() to checkout/remove entries
on working directories appropriately when narrow area is
changed. There are three kind of changes:
- new_narrow_path: reset workdir to a new narrow checkout
- add_narrow_path: keep current narrow areas and add more entries
- remove_narrow_path: remove some entries from current narrow areas
CE_WD_REMOVE is introduced to remove entries from working directories,
but still keep them in index
Signed-off-by: Nguyễn Thái Ngọc Duy &l...
| Aug 15, 10:26 am 2008 |
| Nguyễn Thái Ngọc | [PATCH 5/9] Clear CE_NO_CHECKOUT on checked out entries.
With this you can just do "git checkout some-files" to
widen your checkout. On caveat though: caller must save
the index.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
---
entry.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/entry.c b/entry.c
index 222aaa3..c1c01f4 100644
--- a/entry.c
+++ b/entry.c
@@ -230,5 +230,6 @@ int checkout_entry(struct cache_entry *ce, const struct checkout *state, char *t
} else if (state->not_new)
return 0;...
| Aug 15, 10:26 am 2008 |
| Nguyễn Thái Ngọc | [PATCH 4/9] Prevent diff machinery from examining worktree o...
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
---
diff-lib.c | 5 +++--
diff.c | 4 +++-
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/diff-lib.c b/diff-lib.c
index e7eaff9..4fffd31 100644
--- a/diff-lib.c
+++ b/diff-lib.c
@@ -159,7 +159,7 @@ int run_diff_files(struct rev_info *revs, unsigned int option)
continue;
}
- if (ce_uptodate(ce))
+ if (ce_uptodate(ce) || ce_no_checkout(ce))
continue;
changed = check_removed(ce...
| Aug 15, 10:26 am 2008 |
| Nguyễn Thái Ngọc | [PATCH 3/9] ls-files: add --checkout option to show checked ...
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
---
builtin-ls-files.c | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/builtin-ls-files.c b/builtin-ls-files.c
index e8d568e..bcb1536 100644
--- a/builtin-ls-files.c
+++ b/builtin-ls-files.c
@@ -14,6 +14,7 @@
static int abbrev;
static int show_deleted;
static int show_cached;
+static int show_checkout;
static int show_others;
static int show_stage;
static int show_unmerged;
@@ -...
| Aug 15, 10:25 am 2008 |
| Nguyễn Thái Ngọc | [PATCH 2/9] update-index: add --checkout/--no-checkout optio...
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
---
builtin-update-index.c | 40 +++++++++++++++++++++++++---------------
1 files changed, 25 insertions(+), 15 deletions(-)
diff --git a/builtin-update-index.c b/builtin-update-index.c
index 434cb8e..1d6bb65 100644
--- a/builtin-update-index.c
+++ b/builtin-update-index.c
@@ -24,8 +24,9 @@ static int info_only;
static int force_remove;
static int verbose;
static int mark_valid_only;
-#define MARK_VALID 1
-#define UNMA...
| Aug 15, 10:25 am 2008 |
| Nguyễn Thái Ngọc | [PATCH 1/9] Introduce CE_NO_CHECKOUT bit
This bit is the basis of narrow checkout. If this bit is on, the entry
is outside narrow checkout and therefore should be ignored (similar
to CE_VALID)
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
---
cache.h | 8 ++++++++
read-cache.c | 6 +++---
2 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/cache.h b/cache.h
index 30f1d62..86288b6 100644
--- a/cache.h
+++ b/cache.h
@@ -126,6 +126,7 @@ struct cache_entry {
#define CE_NAMEMASK (0x0fff)...
| Aug 15, 10:24 am 2008 |
| Nguyễn Thái Ngọc | [RFC PATCH 0/9] Narrow/Sparse checkout round 3: "easy mode"
The implementation with insights from Junio turns out smaller and better
(and I was thinking about applying it for huge maildir).
So there is a bit of changes since the last round. This time I follow
"assume unchanged" code path and relax the rules a bit. There are issues
I will mention later.
From user POV, we can now checkout a single file or a subdirectory (checking
out subdirectory non-recursively is possible too). You may start with a narrow
clone like:
git clone --path="Documentation/*" ...
| Aug 15, 10:24 am 2008 |
| Jan Nieuwenhuizen | [TopGit PATCH] tg redepend: New command.
As discussed previously
http://kerneltrap.org/mailarchive/git/2008/8/13/2925144
Change a topgit branch's dependencies by doing a rebase-by-merge.
Signed-off-by: Jan Nieuwenhuizen <janneke@gnu.org>
---
Makefile | 2 +-
README | 5 ++
tg-redepend.sh | 154 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 160 insertions(+), 1 deletions(-)
create mode 100644 tg-redepend.sh
diff --git a/Makefile b/Makefile
index ea6489e..3988251 10064...
| Aug 15, 9:53 am 2008 |
| Jonathan Nieder | Re: [TopGit PATCH] tg redepend: New command.
Hi,
s/tg/tg redepend/?
Why not move the base-creation code in tg-create.sh to a new
function in tg.sh to use here?
I know I suggested that code before, but the merge with B' is wasted, so
perhaps
git checkout P
head=$(git rev-parse --verify HEAD^0)
result_tree=$(git log -1 --pretty=format:%T P')
result_commit=$(git commit-tree "$result_tree" -p P -p B')
git update-ref -m "commit (merge): tg-redepend" HEAD \
"$result_commit" "$head" || ... (fail)
test -x "$GIT_DIR/hooks/p...
| Aug 15, 2:20 pm 2008 |
| Bert Wesarg | Re: [TopGit PATCH] tg redepend: New command.
On Fri, Aug 15, 2008 at 15:53, Jan Nieuwenhuizen <janneke-list@xs4all.nl> wrote:
This would be the first file in this project with such editor infos.
IMHO this shouldn't belong to a patch.
Regards
Bert
--
| Aug 15, 1:16 pm 2008 |
| Jim Meyering | [PATCH] add boolean diff.suppress-blank-empty config option
GNU diff's --suppress-blank-empty option makes it so that diff does not
add a space or tab before each empty output line of context. With this
option, empty context lines are empty also in "git diff" output.
Before (and without the option), they'd have a single trailing space.
* diff.c (diff_suppress_blank_empty): New global.
(git_diff_basic_config): Set it.
(builtin_diff): Use it to set the bit in ecbdata, aka ecb.priv.
* xdiff-interface.c (xdiff_outf): Honor the new option.
* xdiff-interface....
| Aug 15, 8:47 am 2008 |
| Junio C Hamano | Re: [PATCH] add boolean diff.suppress-blank-empty config opt...
AFAIK, ERN 103/120 inspired by your comment merely says an empty context
is either an empty line or a line with a single space on it and does not
deprecate the latter, more traditional, form (I do not know the current
status of the update to the POSIX --- what's the recommended way to find
it out by outsiders?)
We've hacked the patch application side to accomodate this special case to
grok output from recent GNU diff already. Can't we just stop at that,
without having to do the same for generati...
| Aug 15, 2:28 pm 2008 |
| Gerard Lledó | Issues when changing submodule URLs
We are using a super repository for our development where all our code
resides inside submodules. I'm maintaining this tree, so it's quite
common that I change a submodule to point to a different URL according
to our needs (ie, another developer is now in charge of one module).
So, basically I delete the old submodule "rm -rf module && git rm
module", tune .gitmodules and add it again from a different location
"git submodule add ssh://server/newpath module".
The problem comes when another...
| Aug 15, 8:37 am 2008 |
| Michael J Gruber | Re: Issues when changing submodule URLs
How about:
- You mirror the submodule repos.
- Your superproject references the mirrors.
- In your mirror configuration, use descriptive names rather than actual
URLs for the origin of the mirror.
- Use "url.realurl.insteadOf descriptivename" in your own config, which
can be changed easily whenever the authoritative source of a submodule
changes (see git config).
Cheers,
Michael
--
| Aug 15, 11:01 am 2008 |
| Alex Riesen | [PATCH] Fix t3700 on filesystems which do not support questi...
And the prominent example of the deficiency are, as usual, the filesystems
of Microsoft house.
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
---
t/t3700-add.sh | 19 ++++++++++++-------
1 files changed, 12 insertions(+), 7 deletions(-)
| Aug 15, 3:11 am 2008 |
| Junio C Hamano | Re: [PATCH] Fix t3700 on filesystems which do not support qu...
Can other glob specials such as '*' or '[' be used instead of skipping the
test?
--
| Aug 15, 3:17 am 2008 |
| Alex Riesen | Re: [PATCH] Fix t3700 on filesystems which do not support qu...
Ah... The brackets are allowed.
--
| Aug 15, 3:23 am 2008 |
| Alex Riesen | [PATCH] Fix t3700 on filesystems which do not support questi...
Use square brackets instead.
And the prominent example of the deficiency are, as usual, the filesystems
of Microsoft house.
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
---
Sorry, should have thought of it.
t/t3700-add.sh | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
| Aug 15, 3:32 am 2008 |
| Junio C Hamano | Re: [PATCH] Fix t3700 on filesystems which do not support qu...
Thanks. Applied.
--
| Aug 15, 5:01 am 2008 |
| Kevin Ballard | Re: [PATCH] Fix t3700 on filesystems which do not support qu...
Wow, trying to use git-am to apply this patch bus errors. This isn't
good. Specifically, git mailinfo bus errors when the email is piped to
it. Curiously, the attached "patch" is actually another MIME-formatted
message with an inline patch. And I can pipe this "patch" to git-am
and that works. How did you generate this message?
In any case, the patch looks good to me.
Signed-off-by: Kevin Ballard <kevin@sb.org>
-Kevin Ballard
--
Kevin Ballard
http://kevin.sb.org
kevin@sb....
| Aug 15, 4:23 am 2008 |
| Kevin Ballard | Re: [PATCH] Fix t3700 on filesystems which do not support qu...
Ok, it turns out that Don Zickus's patch "Allow emails with boundaries
to work again [v2]" fixes the crash.
-Kevin Ballard
--
Kevin Ballard
http://kevin.sb.org
kevin@sb.org
http://www.tildesoft.com
--
| Aug 15, 4:30 am 2008 |
| Shawn O. Pearce | Re: [PATCH 1/2] bash completion: Add completion for 'git mer...
Acked-by: Shawn O. Pearce <spearce@spearce.org>
... for both patches in this series. But this is new functionality
--
Shawn.
--
| Aug 14, 8:05 pm 2008 |
| Junio C Hamano | Re: [PATCH 1/2] bash completion: Add completion for 'git mer...
Heh, you are too cautious ;-)
Both "log --merge" and mergetool have been with us for quite some time,
and I certainly do not mind taking [2/2] if not both.
--
| Aug 14, 8:15 pm 2008 |
| Shawn O. Pearce | Re: [PATCH 1/2] bash completion: Add completion for 'git mer...
I think both are fine to include in 1.6.0 if you are willing to
apply them there. Its pretty low risk, but at this point the
bash completion has gone from "minor fun toy" to "major part of
the git-core suite which all of the distros link into their bash
completion loading". IMHO its long out-grown its contrib status.
--
Shawn.
--
| Aug 14, 8:18 pm 2008 |
| previous day | today | next day |
|---|---|---|
| August 14, 2008 | August 15, 2008 | August 16, 2008 |
| Greg KH | [GIT PATCH] driver core patches against 2.6.24 |
| Tarkan Erimer | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Bart Van Assche | Integration of SCST in the mainstream Linux kernel |
| Jeff Garzik | Re: fallocate-implementation-on-i86-x86_64-and-powerpc.patch |
git: | |
| David Miller | Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| Arjan van de Ven | Re: [GIT]: Networking |
| Gerrit Renker | [PATCH 15/37] dccp: Set per-connection CCIDs via socket options |
| Natalie Protasevich | [BUG] New Kernel Bugs |
