From bf3c8601ef443be8f195dc0c3b3781b92a7768b8 Mon Sep 17 00:00:00 2001 From: Petar Perisin Date: Wed, 5 Jun 2013 18:34:01 +0200 Subject: [PATCH] git - add files for commit that are inside untracked folders However, files need to be part of the current project to be added to the list. Task-number: QTCREATORBUG-9153 Change-Id: Ifb7a4684e85d0ccd688956eeff77b4cc7d807911 Reviewed-by: Orgad Shaneh --- src/plugins/git/gitclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/git/gitclient.cpp b/src/plugins/git/gitclient.cpp index d0fe2a09427..039be3daebc 100644 --- a/src/plugins/git/gitclient.cpp +++ b/src/plugins/git/gitclient.cpp @@ -2246,7 +2246,7 @@ GitClient::StatusResult GitClient::gitStatus(const QString &workingDirectory, St if (mode & NoUntracked) statusArgs << QLatin1String("--untracked-files=no"); else - statusArgs << QLatin1String("--untracked-files=normal"); + statusArgs << QLatin1String("--untracked-files=all"); if (mode & NoSubmodules) statusArgs << QLatin1String("--ignore-submodules=all"); statusArgs << QLatin1String("-s") << QLatin1String("-b");