Summary
Two exported functions in src/utils/git.ts are never imported or used anywhere:
getCurrentBranch() (line 14) — exported but never called
applyDiff() (line 88) — exported but never called; apply.ts reimplements diff application inline
Action
Remove both functions, or refactor apply.ts to use applyDiff() and delete getCurrentBranch().
Summary
Two exported functions in
src/utils/git.tsare never imported or used anywhere:getCurrentBranch()(line 14) — exported but never calledapplyDiff()(line 88) — exported but never called;apply.tsreimplements diff application inlineAction
Remove both functions, or refactor
apply.tsto useapplyDiff()and deletegetCurrentBranch().