5 lines
98 B
Plaintext
5 lines
98 B
Plaintext
|
#!/bin/sh
|
||
|
# Restores the repository version of given files
|
||
|
git reset -- "$@"
|
||
|
git checkout -- "$@"
|