Git

aus Metalab Wiki, dem offenen Zentrum für meta-disziplinäre Magier und technisch-kreative Enthusiasten.
Version vom 27. Juni 2009, 19:10 Uhr von Oneup (Diskussion | Beiträge) (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...)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Zur Navigation springenZur Suche springen

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