Initial commit

This commit is contained in:
yystopf 2021-04-19 11:32:43 +08:00
commit b00834f4d2
3 changed files with 34 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
# ---> Ada
# Object file
*.o
# Ada Library Information
*.ali

7
LICENSE Normal file
View File

@ -0,0 +1,7 @@
This software code is made available "AS IS" without warranties of any kind.
You may copy, display, modify and redistribute the software code either by
itself or as incorporated into your code; provided that you do not remove
any proprietary notices. Your use of this software code is at your own risk
and you waive any claim against Amazon Digital Services, Inc. or its affiliates
with respect to your use of this software code. (c) 2006 Amazon Digital Services,
Inc. or its affiliates.

20
README.md Normal file
View File

@ -0,0 +1,20 @@
#### 从命令行创建一个新的仓库
```bash
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin http://testgitea2.trustie.net/ceshiorg12/ceshi2.git
git push -u origin master
```
#### 从命令行推送已经创建的仓库
```bash
git remote add origin http://testgitea2.trustie.net/ceshiorg12/ceshi2.git
git push -u origin master
```