diff options
Diffstat (limited to 'description')
| -rwxr-xr-x | description | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/description b/description new file mode 100755 index 0000000..42c7c7e --- /dev/null +++ b/description @@ -0,0 +1,10 @@ +#!/bin/bash +# Change the description of a repo. + +if [[ $1 == *..* ]]; then + echo "No .." >&2 + exit 1 +fi + +echo "Enter the new description and then EOF (^D)" +cat >"$HOME/$1.git/description" |
