Re: Git and check in messages

2013-03-17 Thread Frédéric THOMAS
: Justin Mclean Sent: Monday, March 18, 2013 3:38 AM To: dev@flex.apache.org Subject: Re: Git and check in messages Hi, git rebase -i HEAD~4 However it's not possible to run (unlike git push) if you have uncommitted local changes, that makes it less than useful IMO. You are very like

Re: Git and check in messages

2013-03-17 Thread Justin Mclean
Hi, > git rebase -i HEAD~4 However it's not possible to run (unlike git push) if you have uncommitted local changes, that makes it less than useful IMO. You are very likely to have unstaged changes if your built the SDK. Justin

Re: Git and check in messages

2013-03-17 Thread Frédéric THOMAS
apache.org Subject: Re: Git and check in messages Hi, Another possibility is to use interactive rebase where you squash files/even lines of file inside a single commit you there you can even change the commit orders, use git rebase -i HEAD~4 to interactily change your commits. This really

Re: Git and check in messages

2013-03-17 Thread Justin Mclean
Hi, > Another possibility is to use interactive rebase where you squash files/even > lines of file inside a single commit you there you can even change the commit > orders, use git rebase -i HEAD~4 to interactily change your commits. This really need to be documented on the WIki people who are

Re: Git and check in messages

2013-03-17 Thread Frédéric THOMAS
use git rebase -i HEAD~4 to interactily change your 4 last commits -Message d'origine- From: Frédéric THOMAS Sent: Monday, March 18, 2013 3:30 AM To: dev@flex.apache.org Subject: Re: Git and check in messages Sorry, I meant the usual behavior* Another possibility is t

Re: Git and check in messages

2013-03-17 Thread Frédéric THOMAS
igine- From: Frédéric THOMAS Sent: Monday, March 18, 2013 3:24 AM To: dev@flex.apache.org Subject: Re: Git and check in messages That's usage behavior but there is the possibility to amend your last commit overriding the last message too using git commit --amend -Fred -Message

Re: Git and check in messages

2013-03-17 Thread Frédéric THOMAS
That's usage behavior but there is the possibility to amend your last commit overriding the last message too using git commit --amend -Fred -Message d'origine- From: Justin Mclean Sent: Monday, March 18, 2013 3:19 AM To: dev@flex.apache.org Subject: Git and check in me

Git and check in messages

2013-03-17 Thread Justin Mclean
Hi, Just noticed that the checkin messages are set up to do one message per (local) commit. Is this the behaviour we want? If you do a large number of small commits and then push you get a lot of emails sent to the list. Thanks, Justin