# plc **Repository Path**: kakaxc/plc ## Basic Information - **Project Name**: plc - **Description**: PLC仓库提供不同品牌的PLC资料和相应的库文件(包含但不限于SV定位模块、气缸模块),不同品牌的dmi触摸屏资料和模板,包含但不限于各种品牌的sv马达,dd马达,线性马达,传感器等。 - **Primary Language**: Shell - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-09-17 - **Last Updated**: 2023-09-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PLC ### 仓库职责 PLC仓库提供不同品牌的PLC资料和相应的库文件(包含但不限于SV定位模块、气缸模块),不同品牌的dmi触摸屏资料和模板,包含但不限于各种品牌的sv马达,dd马达,线性马达,传感器等。 ### 贡献方式: 使用git lfs方式贡献 ```bash git init #创建本地仓库环境 git lfs install #安装大文件上传应用 git lfs track * #追踪要上传的大文件,*表示路径下的所有文件 git add .gitattributes #添加先上传的属性文件(要先上传属性文件,不然有可能失败) git commit -m "pre" #添加属性文件上传的说明 git remote add origin https://github.com/Youpeng-Zhang/MOP.git #建立本地和Github仓库的链接 git push origin master #上传属性文件 git add * #添加要上传的大文件,*表示路径下的所有文件 git commit -m "Git LFS commit" #添加大文件上传的说明 git push origin master #上传大文件 //上面上传不行就使用强制传输 //git push -f origin master #强制推送 ``` 参考:https://blog.csdn.net/m0_53623945/article/details/122039894