commit ad47c25003a28e342d8b78227118ed0667fd8a99 Author: pbchr83mz Date: Fri Aug 27 19:05:45 2021 +0800 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b4fb6b4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +# ---> VisualStudioCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0cd5d71 --- /dev/null +++ b/LICENSE @@ -0,0 +1,38 @@ +This work is being provided by the copyright holders under the following license. + +License + +By obtaining and/or copying this work, you (the licensee) agree that you have +read, understood, and will comply with the following terms and conditions. + +Permission to copy, modify, and distribute this work, with or without modification, +for any purpose and without fee or royalty is hereby granted, provided that +you include the following on ALL copies of the work or portions thereof, including +modifications: + +• The full text of this NOTICE in a location viewable to users of the redistributed +or derivative work. + +• Any pre-existing intellectual property disclaimers, notices, or terms and +conditions. If none exist, the W3C Software and Document Short Notice should +be included. + +• Notice of any changes or modifications, through a copyright statement on +the new code or document such as "This software or document includes material +copied from or derived from [title and URI of the W3C document]. Copyright +(c) [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)." + +Disclaimers + +THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS +OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES +OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF +THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, +TRADEMARKS OR OTHER RIGHTS. + +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT. + +The name and trademarks of copyright holders may NOT be used in advertising +or publicity pertaining to the work without specific, written prior permission. +Title to copyright in this work will at all times remain with copyright holders. diff --git a/README.md b/README.md new file mode 100644 index 0000000..d4bb445 --- /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/pbchr83mz/Html_Project.git +git push -u origin master + +``` + +#### 从命令行推送已经创建的仓库 + +```bash +git remote add origin https://bdgit.educoder.net/pbchr83mz/Html_Project.git +git push -u origin master + +```