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
  • Save sunny/7533 to your computer and use it in GitHub Desktop.
Save sunny/7533 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"
[ $? != 0 ] && echo "git repository creation failed" && return 1
git remote add origin bearnaise.net:~simon/repositories/$name
git push origin master
else
echo "no a git repository, asshole"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment