File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -7,3 +7,20 @@ If you want to use jQuery UI, go to [jqueryui.com](http://jqueryui.com) to get s
7
7
8
8
If you are interested in helping developing jQuery UI, you are in the right place.
9
9
To discuss development with team members and the community, visit the [ Developing jQuery UI Forum] ( http://forum.jquery.com/developing-jquery-ui ) .
10
+
11
+ For commiters
12
+ ---
13
+ When looking at pull requests, first check for [ proper commit messages] ( http://wiki.jqueryui.com/w/page/12137724/Bug-Fixing-Guide ) .
14
+
15
+ Unless everything is fine and you can merge directly via GitHub's interface, fetch the remote first:
16
+
17
+ git remote add [ username] [ his-fork.git] -f
18
+
19
+ If you want just one commit and edit the commit message:
20
+
21
+ git cherry-pick -e [ sha-of-commit]
22
+
23
+ If it should go to the stable brach, cherry-pick it to stable:
24
+
25
+ git checkout 1-8-stable
26
+ git cherry-pick -x [ sha-of-commit]
You can’t perform that action at this time.
0 commit comments