https://github.com/AllenInstitute/ecephys_spike_sorting
Raw File
Tip revision: 995842e4ec67e9db1b7869d885b97317012337db authored by Josh Siegle on 19 May 2021, 23:30:17 UTC
Add comma
Tip revision: 995842e
update.sh
#!/bin/bash
set -e

PROJECT_DIR=$(pwd)/..

python update_from_repo.py

# Add post-cookiecutter commands that you always want run here:
git checkout -- $PROJECT_DIR/README.md
git checkout -- $PROJECT_DIR/AUTHORS.rst
git checkout -- $PROJECT_DIR/Pipfile
git checkout -- $PROJECT_DIR/.cookiecutter/update.sh

# Enter patch mode on remaining diffs:
git add -p
back to top