# learning **Repository Path**: apple-cat2021/learning ## Basic Information - **Project Name**: learning - **Description**: 只要去做,生活就会改变... - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-09-14 - **Last Updated**: 2024-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: JavaScript, HTML, Vue ## README ### 只要去做,生活就会改变... ![图片](other/wallpaper.jpg) ### 简易的命令行入门教程 #### Git 全局设置 ``` git config --global user.name "苹果猫" git config --global user.email "921660758@qq.com" ``` #### 创建 git 仓库 ``` git init git add . git commit -m "初始化" git remote add origin https://gitee.com/apple-cat2021/learning.git git push -u origin master ``` #### 已有仓库? ``` git remote add origin https://gitee.com/apple-cat2021/learning.git git push -u origin master ```