GitCommands.GitModule.InTheMiddleOfRebase C# (CSharp) Method

InTheMiddleOfRebase() public method

public InTheMiddleOfRebase ( ) : bool
return bool
        public bool InTheMiddleOfRebase()
        {
            return !File.Exists(GetRebaseDir() + "applying") &&
                   Directory.Exists(GetRebaseDir());
        }
GitModule