File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ export async function getStatus(
143143 return manager . executeRead (
144144 baseDir ,
145145 async ( git ) => {
146- const status = await git . status ( [ "--untracked-files=normal " ] ) ;
146+ const status = await git . status ( [ "--untracked-files=all " ] ) ;
147147 return {
148148 isClean : status . isClean ( ) ,
149149 staged : status . staged ,
@@ -339,7 +339,7 @@ export async function getChangedFiles(
339339 } catch { }
340340 }
341341
342- const status = await git . status ( [ "--untracked-files=normal " ] ) ;
342+ const status = await git . status ( [ "--untracked-files=all " ] ) ;
343343 for ( const file of [
344344 ...status . modified ,
345345 ...status . created ,
@@ -430,7 +430,7 @@ export async function getChangedFilesDetailed(
430430 try {
431431 const [ diffSummary , status ] = await Promise . all ( [
432432 git . diffSummary ( [ "-M" , "HEAD" ] ) ,
433- git . status ( [ "--untracked-files=normal " ] ) ,
433+ git . status ( [ "--untracked-files=all " ] ) ,
434434 ] ) ;
435435
436436 const seenPaths = new Set < string > ( ) ;
You can’t perform that action at this time.
0 commit comments