Does Jupyter Notebook store change history in .ipynb
files?
I use Jupyter Notebook to develop an API client. It is much faster to run the code over and over again if I hardcode sensitive information. I am worry even if I clean up the code before I add to public repository, it may possible to trace back the old changes from a fresh copy of .ipynb
file.
Example:
g = GenieClient('eb243592-faa2-4ba2-a551q-1brsf565c889') # (an invalid key for demonstration)
# g = GenieClient(input('OpsGenie API Key: '))