I said:
> My tentative plan is for 0.99.4 to finish send-pack, 0.99.5
> to enhance fetch-pack, 0.99.6 to finish the first pass for the
> documentation updates and stabilizing the binary packaging.
Ok, I am almost ready to push 0.99.4 out. Here is what I have
in the public repository.
- The br
On Sat, Aug 06, 2005 at 08:44:10AM -0700, Linus Torvalds wrote:
>
>
> On Sat, 6 Aug 2005, Kay Sievers wrote:
> >
> > Damn cool? No problem. :)
> >
> > http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=403fe5ae57c831968c3dbbaba291ae825a1c5aaa
>
> Goodie. Although
On Sat, Aug 06, 2005 at 11:27:54AM -0700, Junio C Hamano wrote:
> A git tag object can have its own text contents, but I do not
> see how I can get to it from gitweb.
>
> For example, I have "junio-gpg-pub" tag in my git.git
> repository. This is a tag to a "blob" which is my public GPG
> key.
Petr Baudis <[EMAIL PROTECTED]> writes:
>> I can probably fix it if anyone cares, but it's not something I use
>> personally, so I don't know if it's worthwhile. It should probably be
>> removed if we don't fix it, since it will fail on any popular repository
>> at this point.
>
> I want to use
How about saving the current HEAD to $GIT_DIR/OLD_HEAD just in
case? Then after fixing up the files in the working tree, you
could say "git commit -m OLD_HEAD".
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at h
This was triggered by a query by Sam Ravnborg, and extends "git reset" to
reset the index and the .git/HEAD pointer to an arbitrarily named point.
For example
git reset HEAD^
will just reset the current HEAD to its own parent - leaving the working
directory untouched, but effectively
On Sat, 6 Aug 2005, Marco Costalba wrote:
>
> Some little new stuff too, complete changelog below:
>
> - added move back/forward in selection history
>
> - added "hyperlinks" SHA1's in commit messages
Ok, this is nicer than gitk, with the parents showing up in the commit
message and thus easy
On Sun, 7 Aug 2005, Sam Ravnborg wrote:
>
> I accidently commited too many files to my tree today, and now I want to
> drop the commit so I have logically separate commits.
>
> What is the right way to do this - in cogito hopefully.
Not cogito, and this needs to be scripted, but if what you _wa
I accidently commited too many files to my tree today, and now I want to
drop the commit so I have logically separate commits.
What is the right way to do this - in cogito hopefully.
I do not mind to execute a few git commands, but for my daily usage I
expect cogito to hanle everything and droppi
Hi all,
this is a fix release, mainly to accomodate the new 'A' flag instead of 'N'
in git-diff-tree format.
Some little new stuff too, complete changelog below:
- added move back/forward in selection history
- added "hyperlinks" SHA1's in commit messages
- fix cursor position in in commit
Johannes Schindelin <[EMAIL PROTECTED]> writes:
> I think that we need a method to do a push in reverse: If a central
> repository has several branches, I might want to pull just those branches
> where the local head is a strict parent of the remote side, and get
> complains for the others. And
Junio C Hamano <[EMAIL PROTECTED]> writes:
> A git tag object can have its own text contents, but I do not
> see how I can get to it from gitweb.
I just realized that this is also unavailable in gitk, so please
consider this as a feature request to gitk as well.
If you can pop-up a temporary w
Dear diary, on Fri, Aug 05, 2005 at 07:49:37PM CEST, I got a letter
where Dirk Behme <[EMAIL PROTECTED]> told me that...
> Hi Petr,
>
> Petr Baudis wrote:
> > I'm happy to announce release 0.13 of the Cogito SCMish layer over the
> >GIT Tree History Storage tool. As usual, get it at:
> >
> >h
A git tag object can have its own text contents, but I do not
see how I can get to it from gitweb.
For example, I have "junio-gpg-pub" tag in my git.git
repository. This is a tag to a "blob" which is my public GPG
key. The "tag" object itself says:
object b92c9c07fe2d0d89c4f692573583c4753
This makes the cursor change when you hover over a SHA1 link with the new
"hypertext" gitk commit ID linking feature.
All credit goes to Jeff Epler <[EMAIL PROTECTED]> and bugs are mine.
I don't actually know any tcl/tk, I'm just acting as a random monkey that
looks at what others do and mix i
The revised code accidentally inherited the restriction that a
reference can be pushed only once, only because the original did
not allow renaming. This is no longer necessary so lift it.
Signed-off-by: Junio C Hamano <[EMAIL PROTECTED]>
---
connect.c |7 ---
1 files changed, 0 insertio
As promised earlier. I will shortly push this out with another
send-pack fix, initially in the proposed updates branch.
This extends the source side semantics to match what Linus
suggested.
An example:
$ git-send-pack kernel.org:/pub/scm/git/git.git pu^^:master pu
would al
Linus Torvalds <[EMAIL PROTECTED]> writes:
> Duh. A missing && meant that half the tests that git-sh-setup-script were
> _meant_ to do were actually totally ignored.
>
> In particular, the git sanity checking ended up only testing that the
> GIT_OBJECT_DIRECTORY was sane, not that GIT_DIR itself
On Sat, Aug 06, 2005 at 09:20:16AM -0700, Linus Torvalds wrote:
> Looks good also. I assume the mouse can't change when it hovers?
In gitk? This is be possible. My patch[1] does it. The way it's done stinks a
little bit, though. and are bound on a tag common to all the
"hyperlinks", and cha
Duh. A missing && meant that half the tests that git-sh-setup-script were
_meant_ to do were actually totally ignored.
In particular, the git sanity checking ended up only testing that the
GIT_OBJECT_DIRECTORY was sane, not that GIT_DIR itself was..
Signed-off-by: Linus Torvalds <[EMAIL PROTECT
Paul Mackerras <[EMAIL PROTECTED]> writes:
> Good idea. Also done. :) It's on master.kernel.org now in my gitk.git
> directory. Hopefully Junio will pull it into git soon.
I did, and will push it out shortly, but I think you need this
patch. To make later merges from you easier, I will not pu
On Sat, 6 Aug 2005, Paul Mackerras wrote:
> Linus Torvalds writes:
> >
> > - "clickable" SHA1's in commit messages would be really really cool if
> >something like that is even possible with tcl/tk.
>
> Done, and it was even pretty easy. It took only about a dozen lines.
Looks good also
On Sat, 6 Aug 2005, Kay Sievers wrote:
>
> Damn cool? No problem. :)
>
> http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=403fe5ae57c831968c3dbbaba291ae825a1c5aaa
Goodie. Although when I looked at it first, it wasn't obvious - the link
is same font, same color
Linus Torvalds writes:
> - "clickable" SHA1's in commit messages would be really really cool if
>something like that is even possible with tcl/tk.
Done, and it was even pretty easy. It took only about a dozen lines.
> - I'd like to have a "back button". Not just for the above kind of thi
Hello, Petr!
Sorry for delay.
On Sun, 2005-07-10 at 17:46 +0200, Petr Baudis wrote:
> Dear diary, on Sat, Jul 09, 2005 at 12:34:44AM CEST, I got a letter
> where Pavel Roskin <[EMAIL PROTECTED]> told me that...
> > Hello, Petr!
>
> Hello,
>
> > Please consider this script for Cogito.
> >
> > S
25 matches
Mail list logo