Git: Use an enum for simple/amend commit

Change-Id: Ibea0a1f2826c67796a56414326fe6afdee654576
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Orgad Shaneh
2013-04-29 21:27:39 +03:00
committed by Orgad Shaneh
parent 2b41210b3f
commit 7b851602cc
7 changed files with 36 additions and 23 deletions

View File

@@ -35,6 +35,12 @@
namespace Git {
namespace Internal {
enum CommitType
{
SimpleCommit,
AmendCommit
};
// Todo: Add user name and password?
class GitSettings : public VcsBase::VcsBaseClientSettings
{