charleso / git-cc
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Tree:
1c45190
git-cc / update.py
| bc182316 » | charleso | 2009-01-28 | 1 | """Update the git repository with Clearcase manually, ignoring history""" | |
| 2 | |||||
| 3 | from common import * | ||||
| 4 | import sync, reset | ||||
| 5 | |||||
| 6 | def main(message): | ||||
| f0b0fb8c » | charleso | 2009-02-11 | 7 | cc_exec(['update', '.'], errors=False) | |
| ef04f739 » | Alexei Strots | 2009-06-09 | 8 | sync.main() | |
| bc182316 » | charleso | 2009-01-28 | 9 | git_exec(['add', '.']) | |
| 10 | git_exec(['commit', '-m', message]) | ||||
| 11 | reset.main('HEAD') | ||||
