jQuery Core Team Meeting – Apr 20 2011


Minutes (Notes) of the meeting of jQuery
Location: #jquery-meeting on Freenode
Time: 2pm ET
NOTE: This meeting has been moved to Wednesday to avoid conflicts with the jQuery Conference.

Official Agenda:

1
2
3
4
5
6
7
8
9
10
11
12
13
Best way to merge Pull Requests?
jQuery commit commands
git checkout master
git checkout -b bug1234
git pull http://url/to/otherrepo branchname
git checkout master
git merge --no-commit --squash bug1234
git commit -a --author="Original Author <author@email.example>"
To get the author:
git log | grep "Author" | head -1