| From | Subject | Date |
|---|---|---|
| Jakub Narebski | Git User's Survey 2007 summary - comparison with previou ...
It's been more than a year since last Git User's Survey. It would be
interesting to find what changed since then. Therefore the idea to
have another survey.
This is partial comparison of Git User's Survey 2007,
(ending at state from 28 September 2007) with previous
survey.
The current survey can be found here:
http://www.survey.net.nz/survey.php?94e135ff41e871a1ea5bcda3ee1856d9
http://tinyurl.com/26774s
The data for current, 2007 survey can be found here:
The data for previous, ...
| Oct 12, 3:07 pm 2007 |
| mfwitten | [GIT] Imports without Tariffs
[INTRO]
Hello,
I have come across a problem that could be easily addressed
in order to improve interoperability between CVS and git.
I'm new to using git (and a novice with SCMs in general),
and I really enjoy the way that git allows me to think.
Unfortunately, I am forced to deal with CVS (for one of
my classes), but I have been courageously trying to use
git behind the scenes, as I can already tell CVS is a
nightmare.
[SCENARIO]
I would like to do the ...
| Oct 12, 1:36 pm 2007 |
| Jeff King | Re: [GIT] Imports without Tariffs
You are presumably doing a 'git-pull' on the cvsimport-ed commits. Try
doing a git-rebase, which will filter out commits which make the same
changes. Yes, it means throwing away your original commits, but the new
ones should be morally equivalent (and are now the "official" upstream
of the CVS repository).
-Peff
-
| Oct 12, 7:49 pm 2007 |
| Florian Weimer | Re: RCS keyword expansion
The downside is that this causes totally unncessary conflicts when
merging. Maybe a custom merge handler could deal with that, though.
-
| Oct 12, 10:51 am 2007 |
| Barry Fishman | Re: RCS keyword expansion
I guess everyone moving from CVS/SVN to Git faces rethinking of
what the RCS markers really mean in the context of their project.
In my case the identifier was just a away of seeing when the file was
last changed, and who did it. I decided this fit better as an editor
function, rather than a checkin function.
I changed my editor (Emacs) to convert RCS Ids to timestamps when I
opened a file for reading. This would fix old files. When i wrote out
files I would update the timestamp before ...
| Oct 12, 10:05 am 2007 |
| Linus Torvalds | Re: RCS keyword expansion
I think it might also be potentially interesting to make this just be a
pre-commit hook - although your point that doing it in the editor is to
some degree even nicer, because it also means that it shows up in diffs
even *before* you commit.
But if you want to explore the pre-commit hook approach, what it would
basically boild down to is that at that point you have a list of all files
that have changed, and then you could run some script on them to change
them even further.
I'm ...
| Oct 12, 10:44 am 2007 |
| Salikh Zakirov | Re: git branch performance problem?
There exist a script contrib/workdir/git-new-workdir,
which creates a new working copy that literally shares the same object store.
It will share both object store and branches, so some care must be taken:
branch which checkout out in one shared working directory must never be
updated
(committed or pulled into) from the other shared working directory.
Said that, I personally find this trick very useful for browsing code
from different branch and quick bug fixing.
-
| Oct 12, 10:32 am 2007 |
| David Kastrup | Re: [PATCH] Fixing path quoting issues
The patches spoke. That is what the [PATCH] in the subject line was about.
--
David Kastrup
-
| Oct 12, 6:14 am 2007 |
| Jan Hudec | Re: Workflow: split repository?
It might make more sense to convert bit by bit, to separate git repositorie=
s.
It can, but you have to be aware of the pitfalls. Git allows you to create
a new history, which is defined modification of the original history. There
is git-filter-branch command, that can create a repository with just
a subtree and such. But it's a new, independent, history. You can't merge
between the old and new one (but you can rebase the few commits someone made
while you were converting) and anyone who has ...
| Oct 12, 7:30 am 2007 |
| Jan Wielemaker | Re: Workflow: split repository?
Hi Jan,
Thanks! git-filter-branch looks a bit overwhelming, but I think I can
manage :-) I'll do the simple things in separate conversions.
Cheers --- Jan
-
| Oct 12, 7:57 am 2007 |
| Jan Wielemaker | Workflow: split repository?
Hi,
I've got a big active project, until yesterday managed using CVS. As
with any distributed academic research project the repository has become
a nice mess where most files are in the wrong place and there are
several almost independent sub-projects living in directories.
The plan is/was to
* Convert everything to GIT (done, through cvs2svn)
* Everyone keeps hacking on their bits, while one is starting
to reorganise the structure by moving files and directories
and changing import ...
| Oct 12, 5:21 am 2007 |
| Shawn O. Pearce | Re: git-fast-import crashes
OK, so the version you have (58ba4) is the latest fast-import after
the strbuf.c series went in. The one immediately before that series
was 4bf538 and is probably actually stable.
So I wonder, can you test 4bf538 and then if it is good bisect
between those two commits? There must be a memory corruption
introduced by one of the strbuf changes...
--
Shawn.
-
| Oct 12, 8:34 pm 2007 |
| Shawn O. Pearce | Re: git-fast-import crashes
Wow. There's no way that struct pack_window is valid anymore.
The base isn't a valid address. The offset cannot possibly be
correct (you don't have that big of a packfile, do you?!
What does `git count-objects -v` give you? I'm specifically
interested in how many packfiles you have. The other thing that
may be interesting to see is the value of pack_open_windows and
peak_pack_open_windows (file scope in sha1_file.c).
Then again, maybe that isn't interesting. This looks like it ...
| Oct 12, 8:29 pm 2007 |
| Shun Kei Leung | git-fast-import crashes
Hi all,
I am using git 1.5.3.4.206.g58ba4-dirty on Mac OS X 10.4. When I tried
to run `git-p4 rebase', it failed with a broken pipe to
`git-fast-import'. I gather the following from GDB. I am kind of
stuck. Does anyone have any idea what's going on?
Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_INVALID_ADDRESS at address: 0x64617469
in_window (win=0x5004d0, offset=3501) at sha1_file.c:701
701 off_t win_off = win->offset;
(gdb) bt
#0 in_window ...
| Oct 12, 2:42 am 2007 |
| Johannes Sixt | Re: [RFC] git-gui window layout
May I point you to
http://repo.or.cz/w/git-gui.git?a=commitdiff;h=a0592d3f5746b41c60fee71dd8d2d27b5c813907
which was committed 5 hours ago.
Except that it has Unstaged above Staged and Diff above Commit, which IMHO
is much more natural.
-- Hannes
-
| Oct 12, 3:00 am 2007 |
| Adam Piatyszek | Re: [RFC] git-gui window layout
Thanks for the info! It seems that I was a bit late with my proposal. ;-)
/Adam
--
.:. Adam Piatyszek - "ediap" .:. JID: ediap(at)jabber.org .:.
.:. ediap(at)users.sourceforge.net .:. PGP key ID: 0x1F115CCB .:.
-
| Oct 12, 3:56 am 2007 |
| Adam Piatyszek | [RFC] git-gui window layout
Dear Giters,
I would like you to comment on my idea to change, or at least add a
possibility to change, the current layout of git-gui window.
Nowadays there is a tendency to produce wide screens for laptops and
even standalone LCD monitors. One can safely assume that the minimum
reasonable horizontal resolution of a screen is at least 1024 pixels (I
do not expect anyone using git-gui with 800x600 resolution).
Moreover, most popular window managers decreases the vertical dimension
of a ...
| Oct 12, 1:49 am 2007 |
| Shawn O. Pearce | Re: push fails with unexpected 'matches more than one'
I think its a bug. But I didn't write the original code.
Meaning I think what happened here was someone wanted to enable
git-send-pack to match "master" here with "refs/heads/master" on
the remote side. One easy way to do that was to see if any ref
ended with "/master", as that was what the ref here was called.
Way back when that code was written most Git repositories probably
only ever had that one branch anyway, or maybe two (refs/heads/master
and refs/heads/origin) so matching the ...
| Oct 12, 8:21 pm 2007 |
| Steffen Prohaska | Re: push fails with unexpected 'matches more than one'
Here is a related question:
I read carefully through the documentation of git-send-pack and
git-rev-parse. The current implementation of git-send-pack is in line
with the documented behaviour, as is the implementation of git-rev-
parse.
So formally everything is correct.
But it is completely against my expectation that git-push <remote>
<head>
can successfully resolve a <head> that git-rev-parse fails to parse. I
understand that refs are not revs ;). But nonetheless, I'd expect ...
| Oct 12, 5:06 am 2007 |
| Steffen Prohaska | push fails with unexpected 'matches more than one'
This adds a test case for unambigous local match but multiple remote
matches. To me, it is unexpected that a ref that is perfectly defined
on the local side fails with 'matches more than one'.
The following rule could solve this:
A ref shall first be unambigously resolved on the local side, and its
full name should be used for matching on the remote side.
For example 'frotz' resolves locally to 'heads/refs/frotz'.
Therefore pretend the user had typed 'heads/refs/frotz'.
But maybe there is ...
| Oct 11, 11:59 pm 2007 |
| Robert Schiele | Re: [PATCH] add simple install replacement
We have some machines here where no compatible install was installed. Sure=
I
could have built GNU coreutils on all of them but writing this script was j=
ust
I just used it because the shells on my machines had it. My idea was that =
if
someone has a shell with less features we could still replace parts with ev=
en
Oh, forgot about that implementation. Since this version is definitely more
I did not intend to write a full replacement for install but cover only the
No, in your ...
| Oct 12, 8:07 am 2007 |
| Jan Hudec | Re: [PATCH] add simple install replacement
No such thing here:
zsh$ /bin/sh
$ which getopts
$
Yes, bash and zsh do have that, but my (and I suspect many git users')
/bin/sh is neither of those. Git scripts should use just POSIX shell
features for portability.
Which is particularly important when you are trying to replace a common
utility, because the systems that won't have it are likely to not have bash
either.
You may want to have a look at /usr/share/automake-1.9/install-sh (or
/usr/share/automake<something>/install-sh). ...
| Oct 12, 7:06 am 2007 |
| Simon Sasburg | Re: Suggestion for mailing lists... split [PATCH]-es int ...
Oh? Turning off Rich formatting and copy/pasting the patch from my
editor worked for me.
-
| Oct 12, 12:27 am 2007 |
| Lars Hjemli | Re: Suggestion for mailing lists... split [PATCH]-es int ...
The problem occurs when gmail decides to wrap the lines in the patch
(max 72 chars per line, I guess).
--
larsh
-
| Oct 12, 1:26 am 2007 |
| Johannes Schindelin | Re: Suggestion for mailing lists... split [PATCH]-es int ...
Hi,
Really? Even a single space on a single line is retained (last time I
checked that did not work)? If so, please amend
Documentation/SubmittingPatches.
Ciao,
Dscho
-
| Oct 12, 3:05 am 2007 |
| Martin Langhoff | Re: Suggestion for mailing lists... split [PATCH]-es int ...
<aol>mee too! - I think it's the kind of development culture that
Linus tries to foster, and I suspect Junio likes too: "talk in
patches" which is a lot more productive than "talk like a pirate",
bikeshedding and other maladies that can fester in mailing lists.
So no split for me ;-) We have the additional alibi that git users are
supposed to be programmers.
m
-
| Oct 11, 9:50 pm 2007 |
| Simon Sasburg | Re: Suggestion for mailing lists... split [PATCH]-es int ...
Ah, good to know, then.
-
| Oct 12, 2:51 am 2007 |
| Peter Karlsson | Re: RCS keyword expansion
Yes, but not embedded in the page in a format that is visible to the
visitor. For CVS I use something like this:
<p class="date">$Date$</p>
to embed the last update time into the page.
--
\\// Peter - http://www.softwolves.pp.se/
-
| Oct 11, 10:27 pm 2007 |
| Johannes Sixt | Re: RCS keyword expansion
Read about the 'filter' attribute (clean and smudge filters), e.g. here:
http://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
This is the place to tie a script to checkouts. How the scripts derive the
information that they put in the checked-out files, is a different matter.
-- Hannes
-
| Oct 12, 4:05 am 2007 |
| Peter Karlsson | Re: RCS keyword expansion
No? That would just be strange. Only the files that are actually changed
should be updated, no others. A $Date$ or $Id$ will show the last
time/commit that specific file was changed, not the latest global state (I
guess the fact that most modern VCSs have global state makes this a bit more
difficult to achieve, in RCS/CVS/PVCS and others the change history is local
to a file and thus it is trivial to find the large change for that
But that's not what I want. Then my build procedure would ...
| Oct 11, 10:26 pm 2007 |
| Peter Karlsson | Re: RCS keyword expansion
Sorry, didn't mean to do anything. I try to avoid Cc'ing people that
are on the mailing list, and apparently strange things happened that
kept the mailing list only as Cc. I'll try to remember setting To:
properly.
Why would it? If the file is the same on both branches, nothing would
happen (it is still the same version), and if the file is different, it
Yes, but I want it on the lowest addressable unit size, i.e on the file
level (I could possibly want to have the last commit for a set ...
| Oct 12, 3:50 am 2007 |
| Lars Hjemli | Re: RCS keyword expansion
Try this:
$ echo 'File revision $Id$' > index.html
$ echo "*.html ident" > .gitattributes
$ git add index.html .gitattributes
$ git commit
From now on, the '$Id' in index.html gets expanded to the SHA1 of the
content of index.html (not the commit SHA1) each time you checkout
(and removed when you commit)
If you still want 'last modified date', the closest thing in git is
'commit date' which you can also get for free:
$ echo 'Last commit: $Format:%cd$' > index.html
$ echo "*.html ...
| Oct 12, 4:21 am 2007 |
| Johannes Schindelin | Re: RCS keyword expansion
Hi,
Finding out which commit last changed that file is slow. That's why it
breaks down. It is possible, yes. But then I think that you really do
not want this. You are just to used to CVS/SVN to see that there is a
The lowest addressable unit size is the file level, alright. And $Id$
contains the blob name. IOW it contains a key to retrieve the contents of
exactly this version of the file.
Ciao,
Dscho
-
| Oct 12, 4:34 am 2007 |
| Jan Hudec | Re: RCS keyword expansion
It does not -- the blob ID is the same. And you can indeed get $Id$ expanded
to that (see gitattributes(5)). However, that's the ONLY thing that is the
same. The date of last modification or ID of commit that last touched that
file might not.
Why? Because git tracks content, not history. The trees and blobs (files) a=
re
identified by SHA1 hashes of their content. Only commit objects add the
notion of history. Thus if two commits contain file with the same text, it's
the same file. Even if ...
| Oct 12, 5:57 am 2007 |
| Salikh Zakirov | Re: RCS keyword expansion
For what it's worth, I've made a small exercise on git scripting
(which I'm total newbie in), and tried to use filter mechanism
(smudge/clean) for solving the problem Peter stated.
Fundamental problems of this approach were discussed in full
on the mailing list, however, as I understand Peter's situation,
they do not apply, as the web site workspace is 'checkout-only',
and no actual work (commits) are made there.
Thus, it will not cause any merge problems etc.
Anyway, smudge/clean does ...
| Oct 12, 12:08 pm 2007 |
| Johannes Schindelin | Re: RCS keyword expansion
Hi Peter,
please do not play games with the To: header. We have a policy here
(which is supposed to be good netiquette) that we keep people in the Cc:
list that we respond to.
But don't you see? When switching branches, this totally breaks down.
No, really, IMHO it is enough to show either the commit name or the blob
name of the file. After all, you are not interested in the date that this
file was last committed, but in the _contents_.
So why not go for the contents? With ...
| Oct 12, 3:02 am 2007 |
| Johannes Schindelin | Re: RCS keyword expansion
Hi,
No.
When changing branches, this is not the commit you think it is.
But maybe you humour me and tell me in which context such a smudge filter
is of use. I have yet to encounter an argument that convinces me.
Ciao,
Dscho
-
| Oct 12, 3:42 pm 2007 |
| Zakirov Salikh | Re: RCS keyword expansion
Exactly. When switching branches, or merging or fast-forwarding several commits,
the last commit may not be correct. The last commit is only correct
for the files
being updated by the fast-forward to exactly one commit.
Which seem to be pretty natural for the use case of checkout-only
Your comment prompted me to think about a narrower case of
fast-forwaring to one revision.
In that case, 'smudge' script can have commit identifier in
FETCH_HEAD, so the example
script from previous message ...
| Oct 12, 4:52 pm 2007 |
| Andy Parkins | Re: yet another workflow question...
Absolutely; in fact I've had times when I've done things like this:
git merge laptop-branch
git merge home-branch
git reset HEAD^^
That is to say, I'm not interested in documenting the merges, I just want to
bring a set of changes from different places together ready for some proper
commits, which of course can be done really easily with git add -i.
Andy
--
Dr Andy Parkins, M Eng (hons), MIET
andyparkins@gmail.com
-
| Oct 12, 12:25 am 2007 |
| Jonathan del Strother | Re: Split a subversion repo into several git repos
I believe you actually wanted "git-svn fetch" here
-
| Oct 12, 7:23 am 2007 |
| Eivind LM | Re: Split a subversion repo into several git repos
With my paths this translates into
$ git-svn init -b eivindlm/branches \
-t eivindlm/tags \
-T eivindlm/trunk/src/probesimulator \
file:///svn-repo/
, which prints the happy message:
Initialized empty Git repository in .git/
The next command is unfortunately not as happy:
$ git fetch
fatal: 'origin': unable to chdir or not a git archive
fatal: The remote end hung up unexpectedly
Cannot get the repository state from ...
| Oct 12, 7:14 am 2007 |
| Eivind LM | Re: Split a subversion repo into several git repos
Thanks,
I found svndumpfilter in the svn book, and gave it a try. Unfortunately it
seems to be confused about files that have moved around in the repository,
I was at least not able to make it dump the entire history for a directory
that over time has changed name, and that contains files that have moved
in from other directories.
Eivind
On Thu, 11 Oct 2007 15:24:59 +0200, Patrick Doyle <wpdster@gmail.com>
-
| Oct 12, 7:15 am 2007 |
| Eivind LM | Re: Split a subversion repo into several git repos
On Fri, 12 Oct 2007 16:23:44 +0200, Jonathan del Strother
<maillist@steelskies.com> wrote:
You are right, that solved the problem :)
So both methods work now, apparently giving the same result. Is there a
difference between the fetch- versus the clone-approach? I am doing this
as a once-and-for-all import, and would like to forget everything about
the subversion repository afterwards.
Thanks,
Eivind
-
| Oct 12, 7:47 am 2007 |
| Sam Vilain | Re: Split a subversion repo into several git repos
Whoops, my mistake. That should have been "git svn fetch".
Sam.
-
| Oct 12, 1:27 pm 2007 |
| Johannes Schindelin | Re: [PATCH] Fixing path quoting issues
Hi,
I am all for it, _iff_ the guilty parties (and by that, I mean _you_) do
it and keep maintaining it. See? Discussion closed already.
Ciao,
Dscho
-
| Oct 12, 4:37 am 2007 |
| Johannes Sixt | Re: [PATCH] Fixing path quoting issues
Actually, reconsidering your proposed patch, there are only a handful of
problematic cases, namely those where the test script is quoted with
double-quotes, like this:
test_expect_success 'load repository with strange names' "
- svnadmin load -q $rawsvnrepo < ../t9115/funky-names.dump &&
+ svnadmin load -q '$rawsvnrepo' < ../t9115/funky-names.dump &&
start_httpd
"
The problem is that here $rawsvnrepo will be expanded before the entire test
script is passed as argument to ...
| Oct 11, 11:43 pm 2007 |
| Wincent Colaiuta | Re: [PATCH] Fixing path quoting issues
How am *I* the guilty party? I'm merely endorsing David's comment
that a modicum of defensive programming isn't a bad thing; an
eminently reasonable position which is somewhat difficult to argue
against.
Cheers,
Wincent
-
| Oct 12, 5:20 am 2007 |
| Wincent Colaiuta | Re: [PATCH] Fixing path quoting issues
+1: especially in this case, where it really is "defensive" and not
"paranoiac".
Cheers,
Wincent
-
| Oct 12, 4:17 am 2007 |
| Johannes Schindelin | Re: [PATCH] Fixing path quoting issues
Hi,
All I'm saying: let patches speak. Talk is cheap.
Ciao,
Dscho
-
| Oct 12, 5:51 am 2007 |
| Salikh Zakirov | Re: git branch performance problem?
There exist a script contrib/workdir/git-new-workdir,
which creates a new working copy that literally shares the same object store.
It will share both object store and branches, so some care must be taken:
branch which checkout out in one shared working directory must never be updated
(committed or pulled into) from the other shared working directory.
Said that, I personally find this trick very useful for browsing alternate
branch code and quick bug fixing.
-
| Oct 12, 10:19 am 2007 |
| Shawn O. Pearce | Re: [PATCH - amended] git-gui: update Italian translation
Michele Ballabio <barra_cuda@katamail.com> wrote:
Thanks. I saw no further discussion on this thread so I have applied
the attached patch as-is. It will be in my repo.or.cz tree in a
couple of hours.
--
Shawn.
-
| Oct 11, 9:15 pm 2007 |
| Gerrit Pape | [PATCH amend] git-config: print error message if the con ...
Instead of simply exiting with 255, print an error message including
the reason why a config file specified through --file cannot be opened
or read.
The problem was noticed by Joey Hess, reported through
http://bugs.debian.org/445208
---
Okay.
I changed the patch to die() only if --file was sepcified, and errno is
not 0.
Thanks, Gerrit.
builtin-config.c | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/builtin-config.c ...
| Oct 12, 4:40 am 2007 |
| Johannes Sixt | Re: [PATCH amend] git-config: print error message if the ...
Thanks. I can live with that. ;)
-- Hannes
-
| Oct 12, 4:59 am 2007 |
| Gerrit Pape | [PATCH drop] git-config: respect other options after -l, ...
Fair enough. Regards, Gerrit.
-
| Oct 12, 4:37 am 2007 |
| Johannes Schindelin | Re: [PATCH amend] git-config: handle --file option with ...
Hi,
One last nit (because I did not see it earlier): please call the variable
"prefix", not "file".
Other than that, I think your patch is obviously correct.
Thanks,
Dscho
-
| Oct 12, 5:08 am 2007 |
| Gerrit Pape | [PATCH amend] git-config: handle --file option with rela ...
When calling git-config not from the top level directory of a repository,
it changes directory before trying to open the config file specified
through the --file option, which then fails if the config file was
specified by a relative pathname. This patch adjusts the pathname to
the config file if applicable.
The problem was noticed by Joey Hess, reported through
http://bugs.debian.org/445208
Signed-off-by: Gerrit Pape <pape@smarden.org>
---
Sure, thanks, Gerrit.
builtin-config.c ...
| Oct 12, 4:32 am 2007 |
| Alex Riesen | [PATCH] Fix a crash in ls-remote when refspec expands in ...
Originally-by: Väinö Järvelä <v@pp.inet.fi>
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
---
remote.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
here you go
diff --git a/remote.c b/remote.c
index e7d735b..a25f66d 100644
--- a/remote.c
+++ b/remote.c
@@ -882,7 +882,8 @@ int get_fetch_map(struct ref *remote_refs,
rm->peer_ref->name);
}
- tail_link_ref(ref_map, tail);
+ if (ref_map)
+ tail_link_ref(ref_map, tail);
return 0;
}
-- ...
| Oct 12, 1:40 pm 2007 |
| Shawn O. Pearce | Re: [PATCH] Fixed crash in fetching remote tags when the ...
I disagree with Alex's argument above, because the result of the
pattern expansion can be NULL due to a pattern that matched nothing
from the remote. This can easily happen if the user originally
configured "remote.$name.fetch = +refs/heads/subdir/*:..." and
then the remote deletes all branches from refs/heads/subdir at some
point in the future.
I think the above patch is the only thing to do here. Perhaps Alex
can write up a formal patch and send it to back to the list and CC
Lars Hjemli ...
| Oct 11, 9:07 pm 2007 |
| Shawn O. Pearce | Re: Git User's Survey 2007 unfinished summary continued
We may find support for Git on SourceForge in the future, but not
on Google Projects anytime soon, if ever.
At the Google Summer of Code Mentor Summit last Saturday Dscho had a
short chat with someone from the Google Code group. Apparently they
did at least look at Git briefly but concluded that they cannot
implement it on their site as our backend storage database is just
plain files on the local filesystem.
One of the reasons (probably among many but whatever) that I think
Google hired ...
| Oct 12, 8:04 pm 2007 |
| Johannes Schindelin | Re: Git User's Survey 2007 unfinished summary continued
Hi,
Jakub, thank you very much for doing this. It is a very tedious work, and
I deem it invaluable.
I had the same problem, and somebody pointed me to
http://ircatwork.com/cgi-bin/irc/irc.cgi
I find it always a little strange how people want to use something like
git, but are unwilling to ask. Is this such a big attack on the manliness
Frankly, expectations like these make me want to bang somebody's head on
I think it'd be a good idea to put it on git://git.kernel.org/, ...
| Oct 12, 5:46 pm 2007 |
| Frank Lichtenheld | Re: Git User's Survey 2007 unfinished summary continued
Nah, the Debian problem is just bad timing. Debian stable is stuck with
1.4.4 which is unfortunate but not fixable. unstable is very fast with
updates and backports.org is very good, too (but lacks at least 10 days
due to upload policy).
Gruesse,
--
Frank Lichtenheld <frank@lichtenheld.de>
www: http://www.djpig.de/
-
| Oct 12, 4:36 pm 2007 |
| J. Bruce Fields | Re: Git User's Survey 2007 unfinished summary continued
Well, hey, we asked for suggestions. Think of it as a project someone
might want to work on, rather than as a command.
I don't know what they mean by "make git more task-oriented rather than
data-model-oriented", but the first suggestion ("Find out why people
find git hard to learn...") is certainly something I'd enjoy working on
if I found the time.
--b.
-
| Oct 12, 7:13 pm 2007 |
| Jakub Narebski | Git User's Survey 2007 unfinished summary continued
This is continuation of partial summary of Git User's Survey 2007,
ending at state from 28 September 2007.
(response ident "46f95167c967b").
The survey can be found here:
http://www.survey.net.nz/survey.php?94e135ff41e871a1ea5bcda3ee1856d9
http://tinyurl.com/26774s
The data this summary is base on can be found here:
----
There were 683 individual responses
Other SCMs
~~~~~~~~~~
13. What would you require from GIT to enable you to change,
if you use other SCM for your ...
| Oct 12, 3:08 pm 2007 |
| Shawn O. Pearce | Re: Git User's Survey 2007 unfinished summary continued
I'm neither too. But I don't think Git is in a niche. OK, well,
in the overall world of software development its certainly in the
niche of version control, as uh, it doesn't do Enterprise Resource
Planning and Large Scale Embezzlement of Monies (ERPaLSEM).
Actually I've seen a number of people on the interweb saying things
like they were switching their project to Git because they felt
it had more staying power than say Monotone or Mercurial, partly
because the kernel devs were actively ...
| Oct 12, 7:53 pm 2007 |
| Karl | Re: Status of kha/experimental
Do you have a list of the bugs you'd like to see fixed before the
release? (I don't, I'm not organized. :-) )
--
Karl Hasselström, kha@treskal.com
www.treskal.com/kalle
-
| Oct 12, 12:43 am 2007 |
| Catalin Marinas | Re: Status of kha/experimental
https://gna.org/bugs/?group=stgit. All of them, if possible :-). If
you happen to work on any of them, change the "assigned to" filed so
that we don't duplicate the effort.
--
Catalin
-
| Oct 12, 1:56 am 2007 |
| previous day | today | next day |
|---|---|---|
| October 11, 2007 | October 12, 2007 | October 11, 2007 |
