public void IssueKeyCommand(string key, CommitLine line)
        {
            var command = rebaserService.GetCommand(key, line);
            if (command == null)
                return;

            rebaserService.IssueCommand(command);
            mainWindow.Refresh();
        }
 public CommitLineItem(CommitLine commitLine)
 {
     this.commitLine = commitLine;
 }