Browse Source

'GIT-Tutorial.md' ändern

m0e 6 năm trước cách đây
mục cha
commit
7c1425c1ab
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  1. 7 0
      GIT-Tutorial.md

+ 7 - 0
GIT-Tutorial.md

@@ -4,10 +4,17 @@
 ##Grundlegende Befehle:
 
 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)
 
 ---