Changes

Jump to: navigation, search

User:Minooz/NexJ

2,922 bytes removed, 12:33, 23 September 2010
no edit summary
==Mercurial==
: [http://mercurial.selenic.com/ Mercurial Version Control]
: Installing in windows[http://www.codza.com/mercurial-with-ssh-setup-on-windows]
: Mozilla Mercurial [https://wiki.mozilla.org/Mercurial_on_Windows]
: The Definitive Guide (book) [http://hgbook.red-bean.com/read/]
: compare version controls [http://martinfowler.com/bliki/VersionControlTools.html]
: Understanding Mercurial [http://mercurial.selenic.com/wiki/UnderstandingMercurial]
: Tutorial-wiki [http://mercurial.selenic.com/wiki/Tutorial]
: TortoiseHg Documentation[http://tortoisehg.bitbucket.org/manual/1.1/TortoiseHg.pdf]
: Eclipse-Mercurial [http://www.javaforge.com/wiki/76412]
: More about installation [http://www.aventinesolutions.nl/mediawiki/index.php/Quick_Tip:_Getting_Started_with_Mercurial]
: Eclipse-Mercurial Video [http://blogs.intland.com/main/entry/39]-[http://code.google.com/p/hgeclipse-demo/ Demo]
: Documentation for Eclipse-Mercurial [http://bitbucket.org/mercurialeclipse/main/wiki/Documentation]
 
===Mercurial Documentation===
: [http://matrix.senecac.on.ca/~mziaei1/CDOT/hgbook.pdf Here] is a documentation for hg.
: [http://matrix.senecac.on.ca/~mziaei1/CDOT/TortoiseHg.pdf Here] is a documentation for TortoiseHg.
 
*Some Basic Terms
#The .hg directory is the “real” repository, and all of the files and directories that coexist with it are said to live in the ''working directory''. An easy way to remember the distinction is that the ''repository'' contains the history of your project, while the ''working directory'' contains a snapshot of your project at a particular point in history.
#The ''hg log'' command gives us a view of the history of changes in the repository. By default, this command prints a brief paragraph of output for each change to the project that was recorded. Each of these recorded events are called a ''changeset'', because it can contain a record of changes to several files. ''Changeset'' is also referred to as ''change'', ''cset'', ''revision'' or ''rev''.
#''Changeset'' field has the format of a number (''identifier'', which is only valid in that repository) followed by a colon, followed by a hexadecimal (or hex) string. These are identifiers for the changeset. The hex string is a unique identifier: the same hex string will always refer to the same changeset in every copy of this repository. The number is shorter and easier to type than the hex string, but it isn't unique: the same number in two different clones of a repository may identify different changesets. ''changeset: 0:0a04b987be5a''
#Mercurial uses revision numbers purely as a convenient shorthand. If you need to discuss a changeset with someone, or make a record of a changeset for some other reason (for example, in a bug report), use the hexadecimal identifier.
#Some changesets, have a tag field. A ''tag'' is another way to identify a changeset, by giving it an easy-to-remember name. ''tag: tip''
==Database / Persistence==
* Transactions
: [http://ovir.icp.ac.ru/oracle/doc/server/doc/scn73/ch12.htm#toc094 Oracle Server Manual]
 
 
==Compare PostgreSQL and MySQL==
1
edit

Navigation menu