8 lines
217 B
Bash
8 lines
217 B
Bash
#!/bin/sh
|
|
|
|
echo "Start pre-commit hook"
|
|
|
|
# Copy current state into sciebo on every commit
|
|
# This excludes .directories and .files inside of bernstein_paper
|
|
cp -r ./25_07_phd_defense/* ~/sciebo/PHD-Presentation-Backup
|