# uni-app **Repository Path**: lucky_ck/uni-app ## Basic Information - **Project Name**: uni-app - **Description**: uni-app 模板 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2020-08-18 - **Last Updated**: 2022-05-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [网址](https://ext.dcloud.net.cn/plugin?id=200) #### 简易的命令行入门教程: Git 全局设置: ``` git config --global user.name "lucky_ck" git config --global user.email "1049906948@qq.com" ``` 创建 git 仓库: ``` mkdir uni-app cd uni-app git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/lucky_ck/uni-app.git git push -u origin master ``` 已有仓库? ``` cd existing_git_repo git remote add origin https://gitee.com/lucky_ck/uni-app.git git push -u origin master ```