lyalpha/

lyadmin

此包最新版本(dev-master)没有可用的许可证信息。

基于ThinkPHP6管理系统

维护者

详细信息

gitee.com/Scorpio/lyadmin.git

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

This package is not auto-updated.

Last update: 2024-09-27 22:46:28 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/