diff options
author | Orgad Shaneh <orgads@gmail.com> | 2013-08-06 18:26:13 +0200 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2013-08-06 18:27:06 +0200 |
commit | fe25ae993593a79a232767f17a3014e701831a9c (patch) | |
tree | 0d0382590823bd06ec7ca7ee3a6faa719f966b8b /src/plugins/git/gitclient.cpp | |
parent | a53cc559be610b8ceff7dd9670c3b7fc04bfad9f (diff) | |
download | qt-creator-fe25ae993593a79a232767f17a3014e701831a9c.tar.gz |
Revert "Git: Follow renames on log"
Depends on a commit that broke compilation
This reverts commit a53cc559be610b8ceff7dd9670c3b7fc04bfad9f
Change-Id: I7b697be1c97bd25f15e2a97927dbc7d03dc456e7
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/git/gitclient.cpp')
-rw-r--r-- | src/plugins/git/gitclient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/gitclient.cpp b/src/plugins/git/gitclient.cpp index aa4bd0fee4..8b89f7f7be 100644 --- a/src/plugins/git/gitclient.cpp +++ b/src/plugins/git/gitclient.cpp @@ -1145,7 +1145,7 @@ void GitClient::log(const QString &workingDirectory, const QString &fileName, arguments.append(userArgs); if (!fileName.isEmpty()) - arguments << QLatin1String("--follow") << QLatin1String("--") << fileName; + arguments << QLatin1String("--") << fileName; executeGit(workingDirectory, arguments, editor); } |