浏览代码

instructions added

Eric Streit 5 月之前
父节点
当前提交
fd12dabe90
共有 1 个文件被更改,包括 16 次插入0 次删除
  1. 16 0
      git-commands.txt

+ 16 - 0
git-commands.txt

@@ -0,0 +1,16 @@
+
+Créer un nouveau dépôt en ligne de commande
+
+touch README.md
+git init
+git add README.md
+git commit -m "first commit"
+git remote add origin http://git.yojik.eu/eric/strUtils.git
+git push -u origin master
+
+Soumettre un dépôt existant par ligne de commande
+
+git remote add origin http://git.yojik.eu/eric/strUtils.git
+git push -u origin master
+
+