Files
alttpr-python/resources/ci/common/git_clean.py
Mike A. Trethewey 28e2d83c54 Prepare for release
2020-02-26 03:07:08 -08:00

15 lines
507 B
Python

import subprocess # do stuff at the shell level
def git_clean():
# clean the git slate
subprocess.check_call([
"git", # run a git command
"clean", # clean command
"-dfx", # d: directories, f: files, x: ignored files
"--exclude=.vscode", # keep vscode IDE files
"--exclude=.idea", # keep idea IDE files
"--exclude=*.json"]) # keep JSON files for that one time I just nuked all that I was working on, oops
if __name__ == "__main__":
git_clean()