Changes between Version 3 and Version 4 of GitWorkflow

Show
Ignore:
Timestamp:
03/22/09 01:21:56 (4 years ago)
Author:
cdavid
Comment:

Mention git tag

Legend:

Unmodified
Added
Removed
Modified
  • GitWorkflow

    v3 v4  
    228228git ci -m "Merge branch to make foo from bar." 
    229229}}} 
     230 
     231= Misc = 
     232 
     233== tags == 
     234 
     235git has a real tag concept. Tags are created, listed and modified using the git tag command: 
     236 
     237{{{ 
     238# List tags 
     239git tag -l 
     240# Create tag 
     241git tag mytag 
     242}}} 
     243 
     244Tags cannot have space in them.