return self.hash() == other.hash()
args = ArgumentParser()
-#args.add_argument("-o","--ofile", help="outputfile", dest="ofile", metavar="outputfile")
-
-#args.add_argument("-f","--file",help="show history of one file", dest="hfile")
-#args.add_argument("-a", help="show author", dest="author", action="store_false")
-
args.add_argument("--log_opts", help="additional options for git log", dest="log_opts", metavar='<LOG_OPTS>')
args.add_argument("--branch_opts", help="additional options for git branch", dest="branch_opts", metavar='<BRANCH_OPTS>')
r = Repo()
# extract Commits
-cmd = "git log --graph --parents"
+cmd = "git log --graph --parents --branches"
if options.log_opts:
# log_opts = options.log_opts.strip()
# if log_opts[0] == log_opts[-1] and log_opts[0] in "\"'":