commit a773575bd95f2a7a76c6985fdd89916e17642e62 Author: Qb65hnelu <1345332331@qq.com> Date: Fri May 14 10:29:10 2021 +0800 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3a5af2c --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# ---> WebMethods +**/IntegrationServer/datastore/ +**/IntegrationServer/db/ +**/IntegrationServer/DocumentStore/ +**/IntegrationServer/lib/ +**/IntegrationServer/logs/ +**/IntegrationServer/replicate/ +**/IntegrationServer/sdk/ +**/IntegrationServer/support/ +**/IntegrationServer/update/ +**/IntegrationServer/userFtpRoot/ +**/IntegrationServer/web/ +**/IntegrationServer/WmRepository4/ +**/IntegrationServer/XAStore/ +**/IntegrationServer/packages/Wm*/ + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f5d1542 --- /dev/null +++ b/LICENSE @@ -0,0 +1,7 @@ +The source code in this package is copyright 1999-2010 by Andrew Plotkin. + +You may copy and distribute it freely, by any means and under any conditions, +as long as the code and documentation is not changed. You may also incorporate +this code into your own program and distribute that, or modify this code and +use and distribute the modified version, as long as you retain a notice in +your program or documentation which mentions my name and the URL shown above. diff --git a/README.md b/README.md new file mode 100644 index 0000000..b84bc57 --- /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/Qb65hnelu/Foodyuppie.git +git push -u origin master + +``` + +#### 从命令行推送已经创建的仓库 + +```bash +git remote add origin https://bdgit.educoder.net/Qb65hnelu/Foodyuppie.git +git push -u origin master + +```