summaryrefslogtreecommitdiff
path: root/description
blob: 42c7c7ecb420529667d58488ea9f7593998f6d45 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
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"