m0e 5 years ago
parent
commit
b8f8c5f92a
1 changed files with 4 additions and 6 deletions
  1. 4 6
      GIT-Tutorial.md

+ 4 - 6
GIT-Tutorial.md

@@ -15,22 +15,16 @@
 
 git init
 
-
 git add . || git add <filename>
 
-
 git commit -m "grund" || git commit -a -m "grund"
 
-
 git remote add origin http://pfad.zum/repo.git
 
-
 git push -u origin master (einmalig, dann langt git push für push ins master)
 
-
 git clone url
 
-
 git clone --recursive
 
 
@@ -41,9 +35,13 @@ git clone --recursive
 
 
 git branch <branchname>		->		Branch erstellen
+
 git checkout <branchname>	->		Zum Branch wechseln
+
 git chekcout master			->		Zurück zum master Branch
+
 git merge <branchname>		->		branch einchecken
+
 git push					->		hochladen