Skip to content

Instantly share code, notes, and snippets.

@sunny
Forked from sr/git-init-remote.sh
Created August 27, 2008 17:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sunny/7534 to your computer and use it in GitHub Desktop.
Save sunny/7534 to your computer and use it in GitHub Desktop.
function is-git? {
git status &> /dev/null
[ $? != 128 ]
}
function git-init-remote {
name=$(basename $PWD).git
path=~/repositories/$name
if is-git?; then
ssh bearnaise.net -t "mkdir $path && cd $path && git --bare init" ||
(echo "git repository creation failed" >&2 && return 1)
git remote add origin bearnaise.net:~simon/repositories/$name
git push origin master
else
echo "Not a git repository, asshole." >&2 && return 1
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment