# wx_room_admin **Repository Path**: gzy2016/wx_room_admin ## Basic Information - **Project Name**: wx_room_admin - **Description**: 网约房业主端-微信小程序 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2025-01-08 - **Last Updated**: 2025-01-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 星云网约房业主端 小程序 命令行指令 Git 全局设置 git config --global user.name "ChinaLQ" git config --global user.email "641284983@qq.com" 创建新版本库 git clone http://git.xingyunol.com/ChinaLQ/xy_weChat_butler.git cd xy_weChat_butler touch README.md git add README.md git commit -m "add README" git push -u origin master 已存在的文件夹 cd existing_folder git init git remote add origin http://git.xingyunol.com/ChinaLQ/xy_weChat_butler.git git add . git commit -m "Initial commit" git push -u origin master 已存在的 Git 版本库 cd existing_repo git remote rename origin old-origin git remote add origin http://git.xingyunol.com/ChinaLQ/xy_weChat_butler.git git push -u origin --all git push -u origin --tags