Zenaan Harkness <zen@xxxxxxxxxxxx> writes: > rm -rf $repo The user would appreciate if you check that there are no uncommited changes and no untracked files (at least no untracked and not ignored files) before running this. Also, it's "$repo", not just $repo, or you'll get surprising behavior if $repo contain spaces. The safe way would actually be stg like: rm -fr -- "$repo" in case $repo starts with a dash. -- Matthieu Moy http://www-verimag.imag.fr/~moy/ -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html