Files
claude-task-master/packages/tm-core/src/git/index.ts
Ralph Khreish ccb87a516a feat: implement tdd workflow (#1309)
Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-10-18 16:29:03 +02:00

14 lines
319 B
TypeScript

/**
* @fileoverview Git operations layer for the tm-core package
* This file exports all git-related classes and interfaces
*/
// Export GitAdapter
export { GitAdapter } from './git-adapter.js';
// Export branch name utilities
export {
generateBranchName,
sanitizeBranchName
} from './branch-name-generator.js';