lyalpha/lyadmin

There is no license information available for the latest version (dev-master) of this package.

基于ThinkPHP6管理系统

dev-master 2021-03-18 11:23 UTC

This package is not auto-updated.

Last update: 2024-05-10 21:02:21 UTC


README

简易的命令行入门教程:

Git 全局设置:

git config --global user.name "Scorpio"
git config --global user.email "libinkiss@yeah.net"

创建 git 仓库:

mkdir alpha
cd alpha
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/Scorpio/alpha.git
git push -u origin master

已有仓库?

cd existing_git_repo
git remote add origin https://gitee.com/Scorpio/alpha.git
git push -u origin master
https://www.kancloud.cn/taobao/suframe/1740459
https://gitee.com/qian/think-admin


/vendor/
/app/
/config/
/extend/
/public/
/route/
/view/
/composer.lock/
/think/
/.idea/
/.example.env/
/.env/