mirror of
https://github.com/awfixers-stuff/src.git
synced 2026-03-26 20:46:00 +00:00
10 lines
124 B
Bash
Executable File
10 lines
124 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu -o pipefail
|
|
|
|
git init -q
|
|
|
|
touch content
|
|
echo -n "content" > content
|
|
|
|
git add --intent-to-add -A
|