class Git::Base

def reset_hard(commitish = nil, opts = {})

resets the working directory to the commitish with '--hard'
def reset_hard(commitish = nil, opts = {})
  opts = {:hard => true}.merge(opts)
  self.lib.reset(commitish, opts)
end