On Tuesday 29/10/2013 at 07:51, Ivanko B  wrote:
> Please test.
> =======================
> What ? Whether are both Oncreate & OnCreted called before OnLoaded
> both for regular & inherited forms ?


To answer your question raised in the Subject line...


Git's commit references are extremely flexible! The following table 
lists just a handful of possible reference examples you can use. 
Quoted from an article I wrote a few years ago.



What to reference?                      Text used
============================================================================
full commit id (SHA1 hash)
of a specific commit                    
87afbbf488d4397a2a6b294abe66f627bae86ee1
-----------------------------------------------------------------------------
partial or short hash as long as
in is unique                            87afbbf
-----------------------------------------------------------------------------
local branch by name                    master
-----------------------------------------------------------------------------
remote branch                           origin/master
-----------------------------------------------------------------------------
tag                                     v1.5
-----------------------------------------------------------------------------
by a commit message. Git will
search for "some text" and use
the first commit id with that
text.                                   ":/some text"
-----------------------------------------------------------------------------
current checkout                        HEAD
-----------------------------------------------------------------------------
commit before HEAD                      HEAD^ or HEAD~1
-----------------------------------------------------------------------------
4 commits before HEAD                   HEAD^^^^ or HEAD~4
-----------------------------------------------------------------------------
the HEAD of yesterday                   HEAD@{yesterday}
-----------------------------------------------------------------------------
HEAD at 1st February                    HEAD@{1.February} or 
HEAD@{February.1}
-----------------------------------------------------------------------------
yesterday on another branch             MyBranchA@{yesterday}
-----------------------------------------------------------------------------
on master a few changes ago             master@{3}

-----------------------------------------------------------------------------





Actual example:


   $ git checkout -b mybranch HEAD@{1.April.2010}




This is what sets git apart from other repository software... It is 
super flexible!! :)




Regards,
  Graeme





------------------------------------------------------------------------------
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more about secure code signing practices that can help keep
Android apps secure.
http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk
_______________________________________________
mseide-msegui-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to