Git: Unterschied zwischen den Versionen

aus Metalab Wiki, dem offenen Zentrum für meta-disziplinäre Magier und technisch-kreative Enthusiasten.
Zur Navigation springenZur Suche springen
(Die Seite wurde neu angelegt: == Git Introduction / Tutorial == <pre>git clone someurl</pre> <pre>git pull</pre> <pre>git commit file -m "holla" git push</pre> <pre>git stash # stacks away git s...)
 
Zeile 1: Zeile 1:
 +
== WTF ==
 +
Git is a version control system (like svn, you heard of that, aight?). It's more powerful than svn and infinitely more confusing (for starters).
 +
Let's go
 +
 +
== Git Installation ==
 +
 +
=== OS X ===
 +
[http://code.google.com/p/git-osx-installer/ git OS X Installer]
 +
[http://help.github.com/mac-key-setup/ github mac key setup]
 +
 
== Git Introduction / Tutorial ==
 
== Git Introduction / Tutorial ==
  

Version vom 11. Oktober 2009, 16:43 Uhr

WTF

Git is a version control system (like svn, you heard of that, aight?). It's more powerful than svn and infinitely more confusing (for starters). Let's go

Git Installation

OS X

git OS X Installer github mac key setup

Git Introduction / Tutorial

git clone someurl
git pull
git commit file -m "holla"
git push
git stash # stacks away
git stash apply # gets stash back
git branch --track thebranch origin/thebranch

switch to a remote branch