Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
s = {1}
s.update()
print(s)
s.update([2])
print(sorted(s))
s.update([1,3], [2,2,4])