Difference between revisions of "Activity Team/Git Introduction"

From Sugar Labs
Jump to navigation Jump to search
m (create page)
 
m (add intro)
Line 1: Line 1:
 
<noinclude>{{GoogleTrans-en}}{{TeamHeader|Activity Team}}</noinclude>
 
<noinclude>{{GoogleTrans-en}}{{TeamHeader|Activity Team}}</noinclude>
== Git and Gitorious Introduction ==
+
== Git ==
  
 +
'''Git''' is a revision control system (sometimes called a "version control system") for programmers used to track and manage changes to code and other data. Git is a decentralized system, with no "master" tree, and was originally written by Linus Torvalds to manage the Linux kernel sources.  Git is used by many open source projects to manage development among programmers, and is used by the OLPC as its preferred version control system.
 +
 +
=== A short overview of a version control system ===
 +
The version control system provides the detailed information on the source code.  Using the repository, a user can:
 +
* Browse or download the current source code and data files .
 +
* Browse or download any version that was ever put in the repository.
 +
* See the comments explaining why changes were made.
 +
* See what changed betweens versions.
 +
* See which versions were picked for which releases, also known as 'heads'.
 +
 +
Users that have write access (or ''commit access'') to the repository can do more:
 +
* Add new files to a project.
 +
* Add changes back into the repository, creating new versions.
 +
* Edit comments to explain why changes were made.
 +
* Merge changes made from two different people into a single version.
 +
* Create a separate branch of development to keep changes separate from others.
 +
 +
For more information about version control systems, see [http://en.wikipedia.org/wiki/Revision_control Wikipedia]
  
 
[[Category:Activity Team]]
 
[[Category:Activity Team]]

Revision as of 17:14, 29 August 2009

Team Home   ·   Join   ·   Contacts   ·   Resources   ·   FAQ   ·   Roadmap   ·   To Do   ·   Meetings

Git

Git is a revision control system (sometimes called a "version control system") for programmers used to track and manage changes to code and other data. Git is a decentralized system, with no "master" tree, and was originally written by Linus Torvalds to manage the Linux kernel sources. Git is used by many open source projects to manage development among programmers, and is used by the OLPC as its preferred version control system.

A short overview of a version control system

The version control system provides the detailed information on the source code. Using the repository, a user can:

  • Browse or download the current source code and data files .
  • Browse or download any version that was ever put in the repository.
  • See the comments explaining why changes were made.
  • See what changed betweens versions.
  • See which versions were picked for which releases, also known as 'heads'.

Users that have write access (or commit access) to the repository can do more:

  • Add new files to a project.
  • Add changes back into the repository, creating new versions.
  • Edit comments to explain why changes were made.
  • Merge changes made from two different people into a single version.
  • Create a separate branch of development to keep changes separate from others.

For more information about version control systems, see Wikipedia