[git-users] Re: Smart HTTP cannot push return code 22

2011-08-13 Thread Thomas Ferris Nicolaisen
I'm not sure if this helps, but here's a Git repository tool that supports Smart HTTP authentication out of the box: http://gitblit.com/index.html It's still a bit new and fresh, but the author has been very quick the couple of bugs I ran into. It's also small enough that you could fix some th

[git-users] git tag -l - where are the associated

2011-08-13 Thread Phlip
I have only 5 years experience using git, so I'm obviously just still a newb here. A tag is a name for a hash-tag, which is the label for a snapshot for a state of the code. (Right?) When I go 'git tag I_like_this_rev', how do I then push the tag up to a repo? (Hence down to a colleague's noteboo

Re: [git-users] git tag -l - where are the associated

2011-08-13 Thread Harry Hornreich
Do git push --tags Harry On Sat, Aug 13, 2011 at 7:28 PM, Phlip wrote: > I have only 5 years experience using git, so I'm obviously just still > a newb here. > > A tag is a name for a hash-tag, which is the label for a snapshot for > a state of the code. (Right?) > > When I go 'git tag I_like_t

[git-users] Re: git tag -l - where are the associated

2011-08-13 Thread Antony
On Aug 13, 5:29 pm, Harry Hornreich wrote: > Do git push --tags git push to push a single tag, also. Antonys -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To post to this group, send email to git-users@googlegroups.com. To unsubsc

Re: [git-users] Re: git tag -l - where are the associated

2011-08-13 Thread Phlip
tx guy- - got a list of tags? $ git tag -l -moar TagOne 9a03e83hashhashhash TagTwo 9b03e83hashhashhash TagThree 8ea330ahashhashhash ? Just curious... --   Phlip   http://c2.com/cgi/wiki?ZeekLand -- You received this message because you are subscribed to the Google Groups

Re: [git-users] git tag -l - where are the associated

2011-08-13 Thread PJ Weisberg
On Saturday, August 13, 2011, Phlip wrote: > tx guy- - got a list of tags? > > $ git tag -l -moar > > TagOne 9a03e83hashhashhash > TagTwo 9b03e83hashhashhash > TagThree 8ea330ahashhashhash > > ? > > Just curious... for x in $(git tag -l); do echo "$x\t$(git rev-parse $x)" done

Re: [git-users] git tag -l - where are the associated

2011-08-13 Thread Phlip
>> Just curious... > > for x in $(git tag -l); do >    echo "$x\t$(git rev-parse $x)" > done Nice, tx! BTW bash didn't expand the \t. No biggie... --   Phlip   http://c2.com/cgi/wiki?ZeekLand -- You received this message because you are subscribed to the Google Groups "Git for human beings"

[git-users] Re: search commit log for given versions

2011-08-13 Thread LovelyLich
On Aug 11, 3:38 pm, David Aguilar wrote: > On Wed, Aug 10, 2011 at 10:01:38PM -0700, LovelyLich wrote: > > Hi all > > I have git clone > > git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git, > > So, I get an repo for linux  kernel source code . > > What I  want to do is to sea