mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-16 21:53:07 +00:00
feat: Address review comments, add stage/unstage functionality, conflict resolution improvements, support for Sonnet 4.6
This commit is contained in:
@@ -99,6 +99,8 @@ export function parseGitStatus(statusOutput: string): FileStatus[] {
|
||||
status: primaryStatus,
|
||||
path: filePath,
|
||||
statusText: getStatusText(indexStatus, workTreeStatus),
|
||||
indexStatus,
|
||||
workTreeStatus,
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
@@ -70,4 +70,8 @@ export interface FileStatus {
|
||||
status: string;
|
||||
path: string;
|
||||
statusText: string;
|
||||
/** Raw staging area (index) status character from git porcelain format */
|
||||
indexStatus?: string;
|
||||
/** Raw working tree status character from git porcelain format */
|
||||
workTreeStatus?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user