Changes between Version 3 and Version 4 of GitWorkflow
- Timestamp:
- 03/22/09 01:21:56 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GitWorkflow
v3 v4 228 228 git ci -m "Merge branch to make foo from bar." 229 229 }}} 230 231 = Misc = 232 233 == tags == 234 235 git has a real tag concept. Tags are created, listed and modified using the git tag command: 236 237 {{{ 238 # List tags 239 git tag -l 240 # Create tag 241 git tag mytag 242 }}} 243 244 Tags cannot have space in them.
