Tagging the 1.7.1rc1 release.
[jquery.git] / README.md
bloba54a02df596f6d9fdd581028064fdd13c304c46f
1 [jQuery](http://jquery.com/) - New Wave JavaScript
2 ==================================================
4 What you need to build your own jQuery
5 --------------------------------------
7 In order to build jQuery, you need to have GNU make 3.8 or later, Node.js 0.2 or later, and git 1.7 or later.
8 (Earlier versions might work OK, but are not tested.)
10 Windows users have two options:
12 1. Install [msysgit](https://code.google.com/p/msysgit/) (Full installer for official Git),
13    [GNU make for Windows](http://gnuwin32.sourceforge.net/packages/make.htm), and a
14    [binary version of Node.js](http://node-js.prcn.co.cc/). Make sure all three packages are installed to the same
15    location (by default, this is C:\Program Files\Git).
16 2. Install [Cygwin](http://cygwin.com/) (make sure you install the git, make, and which packages), then either follow
17    the [Node.js build instructions](https://github.com/ry/node/wiki/Building-node.js-on-Cygwin-%28Windows%29) or install
18    the [binary version of Node.js](http://node-js.prcn.co.cc/).
20 Mac OS users should install Xcode (comes on your Mac OS install DVD, or downloadable from
21 [Apple's Xcode site](http://developer.apple.com/technologies/xcode.html)) and
22 [http://mxcl.github.com/homebrew/](Homebrew). Once Homebrew is installed, run `brew install git` to install git,
23 and `brew install node` to install Node.js.
25 Linux/BSD users should use their appropriate package managers to install make, git, and node, or build from source
26 if you swing that way. Easy-peasy.
29 How to build your own jQuery
30 ----------------------------
32 First, clone a copy of the main jQuery git repo by running `git clone git://github.com/jquery/jquery.git`.
34 Then, to get a complete, minified, jslinted version of jQuery, simply `cd` to the `jquery` directory and type
35 `make`. If you don't have Node installed and/or want to make a basic, uncompressed, unlinted version of jQuery, use
36 `make jquery` instead of `make`.
38 The built version of jQuery will be put in the `dist/` subdirectory.
40 To remove all built files, run `make clean`.
43 Building to a different directory
44 ---------------------------------
46 If you want to build jQuery to a directory that is different from the default location, you can specify the PREFIX
47 directory: `make PREFIX=/home/jquery/test/ [command]`
49 With this example, the output files would end up in `/home/jquery/test/dist/`.
52 Troubleshooting
53 ---------------
55 Sometimes, the various git repositories get into an inconsistent state where builds don't complete properly
56 (usually this results in the jquery.js or jquery.min.js being 0 bytes). If this happens, run `make clean`, then
57 run `make` again.
59 Git for dummies
60 ---------------
62 As the source code is handled by the version control system Git, it's useful to know some features used.
64 ### Submodules ###
66 The repository uses submodules, which normally are handled directly by the Makefile, but sometimes you want to
67 be able to work with them manually.
69 Following are the steps to manually get the submodules:
71 1. `git clone https://github.com/jquery/jquery.git`
72 2. `git submodule init`
73 3. `git submodule update`
75 Or:
77 1. `git clone https://github.com/jquery/jquery.git`
78 2. `git submodule update --init`
80 Or:
82 1. `git clone --recursive https://github.com/jquery/jquery.git`
84 If you want to work inside a submodule, it is possible, but first you need to checkout a branch:
86 1. `cd src/sizzle`
87 2. `git checkout master`
89 After you've committed your changes to the submodule, you'll update the jquery project to point to the new commit,
90 but remember to push the submodule changes before pushing the new jquery commit:
92 1. `cd src/sizzle`
93 2. `git push origin master`
94 3. `cd ..`
95 4. `git add src/sizzle`
96 5. `git commit`
98 The makefile has some targets to simplify submodule handling:
100 #### `make update_submodules` ####
102 checks out the commit pointed to by jquery, but merges your local changes, if any. This target is executed 
103 when you are doing a normal `make`.
105 #### `make pull_submodules` ####
107 updates the content of the submodules to what is probably the latest upstream code.
109 #### `make pull` ####
111 make a `make pull_submodules` and after that a `git pull`. if you have no remote tracking in your master branch, you can
112 execute this command as `make pull REMOTE=origin BRANCH=master` instead.
114 ### cleaning ###
116 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):
118 1. `git reset --hard upstream/master`
119 2. `git clean -fdx`
121 ### rebasing ###
123 For feature/topic branches, you should always used the `--rebase` flag to `git pull`, or if you are usually handling many temporary "to be in a github pull request" branches, run following to automate this:
125 * `git config branch.autosetuprebase local` (see `man git-config` for more information)
127 ### handling merge conflicts ###
129 If you're getting merge conflicts when merging, instead of editing the conflicted files manually, you can use the feature
130 `git mergetool`. Even though the default tool `xxdiff` looks awful/old, it's rather useful.
132 Following are some commands that can be used there:
134 * `Ctrl + Alt + M` - automerge as much as possible
135 * `b` - jump to next merge conflict
136 * `s` - change the order of the conflicted lines
137 * `u` - undo an merge
138 * `left mouse button` - mark a block to be the winner
139 * `middle mouse button` - mark a line to be the winner
140 * `Ctrl + S` - save
141 * `Ctrl + Q` - quit
143 Questions?
144 ----------
146 If you have any questions, please feel free to ask on the
147 [Developing jQuery Core forum](http://forum.jquery.com/developing-jquery-core) or in #jquery on irc.freenode.net.