commit b32808216d9c9e6c35bbb6e803d9296257d81899 Author: p46789105 <2429815175@qq.com> Date: Thu May 13 12:54:43 2021 +0800 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e83f82e --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# ---> CMake +CMakeLists.txt.user +CMakeCache.txt +CMakeFiles +CMakeScripts +Testing +Makefile +cmake_install.cmake +install_manifest.txt +compile_commands.json +CTestTestfile.cmake +_deps + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..71ba626 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +Eiffel Forum License, version 2 + +1. Permission is hereby granted to use, copy, modify and/or distribute this +package, provided that: + + - copyright notices are retained unchanged, + +- any distribution of this package, whether modified or not, includes this +license text. + +2. Permission is hereby also granted to distribute binary programs which depend +on this package. If the binary program depends on a modified version of this +package, you are encouraged to publicly release the modified version of this +package. + +THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT WARRANTY. ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +AUTHORS BE LIABLE TO ANY PARTY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS +PACKAGE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..50553f7 --- /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/p46789105/AliOS_Things_Memory_Management.git +git push -u origin master + +``` + +#### 从命令行推送已经创建的仓库 + +```bash +git remote add origin https://bdgit.educoder.net/p46789105/AliOS_Things_Memory_Management.git +git push -u origin master + +```