commit
0f99679602
@ -0,0 +1,17 @@
|
|||||||
|
# ---> Go
|
||||||
|
# Binaries for programs and plugins
|
||||||
|
*.exe
|
||||||
|
*.exe~
|
||||||
|
*.dll
|
||||||
|
*.so
|
||||||
|
*.dylib
|
||||||
|
|
||||||
|
# Test binary, built with `go test -c`
|
||||||
|
*.test
|
||||||
|
|
||||||
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||||
|
*.out
|
||||||
|
|
||||||
|
# Dependency directories (remove the comment below to include it)
|
||||||
|
# vendor/
|
||||||
|
|
@ -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/hnu202010040203/sb.git
|
||||||
|
git push -u origin master
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 从命令行推送已经创建的仓库
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git remote add origin https://bdgit.educoder.net/hnu202010040203/sb.git
|
||||||
|
git push -u origin master
|
||||||
|
|
||||||
|
```
|
Loading…
Reference in new issue