class Dotbot::GitError

Public Instance Methods

help_text(message=nil) click to toggle source
# File lib/dotbot/errors.rb, line 42
    def help_text(message=nil)
      <<~HEREDOC
        💀  Git experienced an issue  💀
        ----------------------------

        For some reason git was unable to complete the '#{message}' operation.
        Make sure your configured Dotbot directory is a git repo that has
        a remote configured.  Make sure you can git push and git pull from
        that directory before running '#{message}' again.
      
      HEREDOC
    end