Skip to content
Permalink
Browse files
Switched from using Git Submodules to just doing a straight clone of …
…the QUnit and Sizzle directories. Works much better for what we want.
  • Loading branch information
jeresig committed Nov 30, 2009
1 parent e514e67 commit 6798df5
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 10 deletions.
@@ -4,3 +4,5 @@ dist
*~
*.diff
*.patch
test/qunit
src/sizzle

This file was deleted.

@@ -40,8 +40,8 @@ ${DIST_DIR}:

init:
@@echo "Grabbing external dependencies..."
@@git submodule init
@@git submodule update
@@git clone git://github.com/jquery/qunit.git test/qunit
@@git clone git://github.com/jeresig/sizzle.git src/sizzle
@@cd src/sizzle && git pull origin master
@@cd test/qunit && git pull origin master

Submodule sizzle deleted from c55551
Submodule qunit deleted from 4ac535

1 comment on commit 6798df5

@curiousdannii
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might be valuable to use:

git clone --depth 1

Please sign in to comment.