[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 notebook?)

If I say git tag -l, I only get the names. Big whoop. Where are the
matching hash tags?

Apologies for the newbescent questions, but when I google I get a
thousand false hits due to the generic terms involved.

--
  Phlip
  http://bit.ly/ZeekLand

-- 
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 unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.



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 tag I_like_this_rev', how do I then push the tag up to
 a repo? (Hence down to a colleague's notebook?)

 If I say git tag -l, I only get the names. Big whoop. Where are the
 matching hash tags?

 Apologies for the newbescent questions, but when I google I get a
 thousand false hits due to the generic terms involved.

 --
  Phlip
  http://bit.ly/ZeekLand

 --
 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 unsubscribe from this group, send email to
 git-users+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/git-users?hl=en.



-- 
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 unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.



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 $x)
done

?

-- 

-PJ

-- 
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 unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.



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.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.