blob: 929b6466d54238ad9938141a65be995f5e2fd1b4 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
#
# Reset .gitattributes
#
# See https://stackoverflow.com/questions/11383094/unstaged-changes-left-after-git-reset-hard
git rm .gitattributes
git add -A
git reset --hard
|