Changes between Version 4 and Version 5 of GitStarted


Ignore:
Timestamp:
Nov 12, 2011, 9:49:37 AM (12 years ago)
Author:
nielx
Comment:

Add a nice article found by olta

Legend:

Unmodified
Added
Removed
Modified
  • GitStarted

    v4 v5  
    11= Getting Started with Git (for Developers) =
    22
    3 There are very many resources on the web where you can learn about Git. See the two resources below to get started. Furthermore, this page will discuss three concepts that you need to grasp in order to get started.
     3There are very many resources on the web where you can learn about Git. See the two resources below to get started. Furthermore, this page will discuss three concepts that you need to grasp in order to get started. 
    44
    55 * [http://git.or.cz/course/svn.html Git - SVN Crash Course]
     
    2525See the [http://gitready.com/beginner/2009/01/18/the-staging-area.html article on the staging area on gitready.com].
    2626
    27 == Editing history ==
     27== Editing history: rebasing and more ==
    2828
    2929Unlike with SVN, with git you can edit the history of the repository. This means changing previous commits, changing the order of commits, removing previous commits and whatever more. See [http://www-cs-students.stanford.edu/~blynn/gitmagic/ch05.html this chapter from the Git Magic resource] to see how you can edit history.
    3030
    31 A special mention is for rebasing. See the [http://gitready.com/intermediate/2009/01/31/intro-to-rebase.html explanation to rebasing on gitready.com]. Learn about it: it is likely that you will use it!
     31A special mention is for rebasing. See the [http://gitready.com/intermediate/2009/01/31/intro-to-rebase.html explanation to rebasing on gitready.com]. However, rebasing is a destructive operation that sometimes destroys a part of history that you might need. Read this [http://www.jarrodspillers.com/2009/08/19/git-merge-vs-git-rebase-avoiding-rebase-hell/ article on rebasing by Jarrod Spillers] that clears up when to rebase and when not. Learn about it: it is likely that you will use it!
    3232
    3333{{{