commit 33296a72badc62079796d98f08910bac12f28dc8 Author: mce9xgzsq Date: Wed Jul 7 18:40:56 2021 +0800 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..035ad40 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +# ---> CraftCMS +# Craft 2 Storage (https://craftcms.com/support/craft-storage-gitignore) +# not necessary for Craft 3 (https://github.com/craftcms/craft/issues/26) +/craft/storage/* +!/craft/storage/rebrand + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..779571a --- /dev/null +++ b/LICENSE @@ -0,0 +1,14 @@ +Copyright (c) 1986 by University of Toronto. Written by Henry Spencer. Not +derived from licensed software. + +Permission is granted to anyone to use this software for any purpose on any +computer system, and to redistribute it freely, subject to the following restrictions: + +1. The author is not responsible for the consequences of use of this software, +no matter how awful, even if they arise from defects in it. + +2. The origin of this software must not be misrepresented, either by explicit +claim or by omission. + +3. Altered versions must be plainly marked as such, and must not be misrepresented +as being the original software. diff --git a/README.md b/README.md new file mode 100644 index 0000000..23bc1e4 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +#### 从命令行创建一个新的仓库 + +```bash +touch README.md +git init +git add README.md +git commit -m "first commit" +git remote add origin https://bdgit.educoder.net/mce9xgzsq/ceshi.git +git push -u origin master + +``` + +#### 从命令行推送已经创建的仓库 + +```bash +git remote add origin https://bdgit.educoder.net/mce9xgzsq/ceshi.git +git push -u origin master + +```