charleso / git-cc

Bridge for Git and Clearcase

This URL has Read+Write access

strotz (author)
Mon Jul 13 14:34:08 -0700 2009
charleso (committer)
Mon Jul 13 14:40:55 -0700 2009
git-cc / reset.py
100644 8 lines (5 sloc) 0.153 kb
1
2
3
4
5
6
7
8
"""Reset hard to a specific changeset"""
 
from common import *
 
def main(commit):
    git_exec(['branch', '-f', CC_TAG, commit])
    tag(CI_TAG, commit)