Ticket Change Details
Not logged in
Overview

Artifact ID: 000eb3b351fe714a65174923090a17588bb12cd1
Ticket: 6778fd3f4a480b4d4090513aca2a67684cc2ac54
Need a Branch Delete option
User & Date: anonymous 2009-12-31 17:14:59
Changes

  1. Appended to comment:
    
    
    <hr><i>anonymous added on 2009-12-31 17:14:59:</i><br>
    From what I get, I believe the original reporter ask for something similar to what git has.
    
    git co -b crazyFeature
    hack, hack, hack...
    git ci -a
    hack, hack, hack...
    git ci -a
    
    If you see that the crazy feature did finish correctly, then you are set up:
    
    git co master; git merge crazyFeature; git branch -d crazyFeature
    
    If the crazy feature was, well... just crazy, and you just want to drop away that crazy code:
    
    git co master; git branch -d crazyFeature