# doc **Repository Path**: chenfa123/doc ## Basic Information - **Project Name**: doc - **Description**: docsify study - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-04-11 - **Last Updated**: 2022-04-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Headline 厚积薄发 git init // 初始化一个仓库 git add -A // 添加所有文件到暂存区,也就是交给由git管理着 git commit -m "first commit" // 提交到git仓库,-m后面是注释 git remote add origin https://github.com/chenfa0824/doc.git git push -u origin master // 推送到远程myblogs仓库