]> git.madduck.net Git - code/myrepos.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

checkout with reset --hard
authorJoey Hess <joey@gnu.kitenet.net>
Fri, 16 Jan 2009 04:04:07 +0000 (23:04 -0500)
committerJoey Hess <joey@gnu.kitenet.net>
Fri, 16 Jan 2009 04:04:07 +0000 (23:04 -0500)
this is less prone to failure, and shows a progress bar

lib/gitless

index 87813161f742edb984b53a1ecb32493597279680..334326eab551bb24849ab0e063edc50f3eda5011 100644 (file)
@@ -21,7 +21,6 @@
 # commands can be used, as long as the file server is available.
 
 lib =
-
        gitless_checkout() {
                server="$1"
                remotebase="$2"
@@ -33,9 +32,9 @@ lib =
                        if [ ! -d "$remotebase/$dir.$hostname" ]; then
                                git clone --no-checkout "$remotebase/$dir.git" "$remotebase/$dir.$hostname"
                        fi
-                       mkdir -p $dir
-                       cd $dir
-                       ln -sf $remotebase/$dir/.git
-                       git checkout .
+                       mkdir -p "$dir"
+                       cd "$dir"
+                       ln -sf "$remotebase/$dir.$hostname/.git"
+                       git reset --hard
                fi
        }