View on GitHub

check-spelling-docs

Documentation for check-spelling

Miscellaneous commands

Empty remote

#!/bin/sh
if [ -d ~/code/empty ]; then
  cd ~/code/empty
else
  cd $(mktemp -d)
  git init
fi
for a in $(git ls-remote $1|perl -pne 's/^\S*\s+/:/'); do git push $1 $a 2>/dev/null & done

Adding another remote

git remote add $ORG -t $BRANCH --no-tags $(git remote get-url origin |perl -pne 's{:.*/}{:'$ORG'/}')

FAQ | Showcase | Event descriptions | Configuration information | Known Issues | Possible features | Deprecations | Release notes | Helpful scripts