On Github cerivera / git-pres
Created by Carlos Rivera
v0.1, v0.5, v2.0, ...
class List():
def append():
...
def delete():
...
# class List(): # def append(): # ... # def delete(): # ...
# class List():
# def append():
# ...
# def delete():
# ...
class BetterList():
def append():
...
def delete()
...
Keeping obsolete files around
(without breaking existing app!)
What if you want to work on same file?
Same function?
(This is all happening on your local computer)