Skip to content

Commit 75147e9

Browse files
committed
refactor(git.ts): improve git add completion message for clarity
1 parent 59b6edb commit 75147e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/git.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export const gitAdd = async ({ files }: { files: string[] }) => {
8080

8181
await execa('git', ['add', ...files]);
8282

83-
gitAddSpinner.stop(`Done adding ${files.length} files`);
83+
gitAddSpinner.stop(`Staged ${files.length} files`);
8484
};
8585

8686
export const getDiff = async ({ files }: { files: string[] }) => {

0 commit comments

Comments
 (0)