[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

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 phlip2...@gmail.com 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

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

2011-08-13 Thread PJ Weisberg
On Saturday, August 13, 2011, Phlip phlip2...@gmail.com 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

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 group.