소스 검색

first commit

Hongwenjun 1 년 전
커밋
f97c2a643d
1개의 변경된 파일16개의 추가작업 그리고 0개의 파일을 삭제
  1. 16 0
      README.md

+ 16 - 0
README.md

@@ -0,0 +1,16 @@
+### https://git.lyvba.com/hongwenjun/books
+## 从命令行创建一个新的仓库
+```
+touch README.md
+git init
+git add README.md
+git commit -m "first commit"
+git remote add origin https://git.lyvba.com/hongwenjun/books.git
+git push -u origin master
+```
+
+## 从命令行推送已经创建的仓库
+```
+git remote add origin https://git.lyvba.com/hongwenjun/books.git
+git push -u origin master
+```