# prodsys_vue **Repository Path**: foralark/prodsys_vue ## Basic Information - **Project Name**: prodsys_vue - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-12 - **Last Updated**: 2024-10-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # prodsys_vue #### Description {**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**} #### Software Architecture Software architecture description #### Installation 1. xxxx 2. xxxx 3. xxxx #### Instructions 1. xxxx 2. xxxx 3. xxxx #### Contribution 1. Fork the repository 2. Create Feat_xxx branch 3. Commit your code 4. Create Pull Request #### Gitee Feature 1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md 2. Gitee blog [blog.gitee.com](https://blog.gitee.com) 3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore) 4. The most valuable open source project [GVP](https://gitee.com/gvp) 5. The manual of Gitee [https://gitee.com/help](https://gitee.com/help) 6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) ===== ``` 简易的命令行入门教程: Git 全局设置: git config --global user.name "foralark" git config --global user.email "12651714+foralark@user.noreply.gitee.com" 创建 git 仓库: mkdir prodsys_vue cd prodsys_vue git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/foralark/prodsys_vue.git git push -u origin "master" 已有仓库? cd existing_git_repo git remote add origin https://gitee.com/foralark/prodsys_vue.git git push -u origin "master" ```