Git: Difference between revisions

From OLPC
Jump to navigation Jump to search
m (Fix link)
(git commands)
Line 1: Line 1:
'''Git''' is a version control ("revision control") system for programmers used to track and manage changes to code. It happens to be a decentralized system, with no "master" tree, and was originally written by Linus Torvalds to manage the Linux kernel sources.
'''Git''' is a version control ("revision control") system for programmers used to track and manage changes to code. It happens to be a decentralized system, with no "master" tree, and was originally written by Linus Torvalds to manage the Linux kernel sources.


= Git commands =
[http://git.or.cz/#download Download git-core] or


git-clone git://dev.laptop.org (To get the code)
[http://en.wikipedia.org/wiki/Git_(software) Read more about git on Wikipedia]
git-pull (To update the code)
git-status -a (To see the status of your committs)
git-checkout -- (To undo your committs)


----
----
== Git for OLPC ==

OLPC GIT: http://dev.laptop.org/ (for tracking and submitting bugs and tasks)
OLPC GIT: http://dev.laptop.org/ (for tracking and submitting bugs and tasks)
Line 13: Line 17:
Sources: http://dev.laptop.org/browser
Sources: http://dev.laptop.org/browser
Tickets: http://dev.laptop.org/query
Tickets: http://dev.laptop.org/query

== Further Resources ==

[http://git.or.cz/#download Download git-core] or

[http://en.wikipedia.org/wiki/Git_(software) Read more about git on Wikipedia]
[http://freedesktop.org/wiki/UsingGit Freedesktop Git]





Revision as of 08:27, 5 April 2007

Git is a version control ("revision control") system for programmers used to track and manage changes to code. It happens to be a decentralized system, with no "master" tree, and was originally written by Linus Torvalds to manage the Linux kernel sources.

Git commands

git-clone git://dev.laptop.org (To get the code)
git-pull (To update the code)
git-status -a  (To see the status of your committs)
git-checkout -- (To undo your committs)


Git for OLPC

OLPC GIT: http://dev.laptop.org/  (for tracking and submitting bugs and tasks)

    Wiki: http://dev.laptop.org/wiki
 Roadmap: http://dev.laptop.org/roadmap
 Sources: http://dev.laptop.org/browser
 Tickets: http://dev.laptop.org/query

Further Resources

Download git-core or

Read more about git on Wikipedia Freedesktop Git