Initial commit

master
p46789105 5 years ago
commit b32808216d

13
.gitignore vendored

@ -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

@ -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.

@ -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
```
Loading…
Cancel
Save