7 lines
No EOL
118 B
Bash
Executable file
7 lines
No EOL
118 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
cp -R .git _git
|
|
|
|
git add "_git/*" || { echo "Failed to git add contents of _git"; exit 1; }
|
|
|
|
exit |