Delete a git script we don't need

This commit is contained in:
Duke Leto
2020-10-25 23:42:22 -04:00
parent f78c0d2ce3
commit 4c1a9a9df7

View File

@@ -1,12 +0,0 @@
#!/bin/bash
for f in $(git diff --name-only --diff-filter=U | cat); do
echo "Resolve conflict in $f ..."
git checkout --theirs $f
done
for f in $(git diff --name-only --diff-filter=U | cat); do
echo "Adding file $f ..."
git add $f
done