Skip to content

Commit 58a41e7

Browse files
committed
Readme update: Some instructions for cherry-picking from pull requests
1 parent 7157af2 commit 58a41e7

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,20 @@ If you want to use jQuery UI, go to [jqueryui.com](http://jqueryui.com) to get s
77

88
If you are interested in helping developing jQuery UI, you are in the right place.
99
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]

0 commit comments

Comments
 (0)