By default, git 'watches' everything in our SULI repository. However, we'd like to be able to save plots we generate and not have git pick this up as a change.
@hmoore28 Can you add two lines to the end of the .gitignore file, something like this:
# Ignore saved plot files
*.png
Please do so in a branch and then open a PR. Thanks!
By default, git 'watches' everything in our
SULI
repository. However, we'd like to be able to save plots we generate and not have git pick this up as a change.@hmoore28 Can you add two lines to the end of the
.gitignore
file, something like this:Please do so in a branch and then open a PR. Thanks!