class GitProc::UncommittedChangesError

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/git-process/uncommitted_changes_error.rb, line 18
def initialize
  super("There are uncommitted changes.\nPlease either commit your changes, or use 'git stash' to set them aside.")
end