aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2013-07-10 12:00:26 -0400
committerTimmy Willison <timmywillisn@gmail.com>2013-07-10 12:00:26 -0400
commitb13d8229ae25a6c48b1d59a0e592cde154e063f0 (patch)
treee4d67e08ed8ef07467fcbf40e29c7c71244292f1 /README.md
parentc93f91e33ee25e60683fd05ae0210c9b07f2e2ac (diff)
downloadjquery-b13d8229ae25a6c48b1d59a0e592cde154e063f0.tar.gz
jquery-b13d8229ae25a6c48b1d59a0e592cde154e063f0.zip
Include Sizzle and Qunit with bower. Fixes #14118.
Diffstat (limited to 'README.md')
-rw-r--r--README.md65
1 files changed, 2 insertions, 63 deletions
diff --git a/README.md b/README.md
index 18740b9e4..0739a3bbb 100644
--- a/README.md
+++ b/README.md
@@ -97,10 +97,10 @@ To create a custom build of the latest stable version, first check out the versi
git pull; git checkout $(git describe --abbrev=0 --tags)
```
-Then, make sure all Node dependencies are installed and all Git submodules are checked out:
+Then, make sure all Node dependencies are installed:
```bash
-npm install && grunt
+npm install
```
Create the custom build, use the `grunt custom` option, listing the modules to be excluded. Examples:
@@ -173,72 +173,11 @@ Additionally, both methods can be combined.
-Updating Submodules
--------------------
-
-Update the submodules to what is probably the latest upstream code.
-
-```bash
-grunt update_submodules
-```
-
-Note: This task will also be run any time the default `grunt` command is used.
-
-
-
Essential Git
-------------
As the source code is handled by the version control system Git, it's useful to know some features used.
-### Submodules ###
-
-The repository uses submodules, which normally are handled directly by the `grunt update_submodules` command, but sometimes you want to
-be able to work with them manually.
-
-Following are the steps to manually get the submodules:
-
-```bash
-git clone https://github.com/jquery/jquery.git
-cd jquery
-git submodule init
-git submodule update
-```
-
-Or:
-
-```bash
-git clone https://github.com/jquery/jquery.git
-cd jquery
-git submodule update --init
-```
-
-Or:
-
-```bash
-git clone --recursive https://github.com/jquery/jquery.git
-cd jquery
-```
-
-If you want to work inside a submodule, it is possible, but first you need to checkout a branch:
-
-```bash
-cd src/sizzle
-git checkout master
-```
-
-After you've committed your changes to the submodule, you'll update the jquery project to point to the new commit,
-but remember to push the submodule changes before pushing the new jquery commit:
-
-```bash
-cd src/sizzle
-git push origin master
-cd ..
-git add src/sizzle
-git commit
-```
-
-
### cleaning ###
If you want to purge your working directory back to the status of upstream, following commands can be used (remember everything you've worked on is gone after these):