# 学习小洞 **Repository Path**: shu-xu/small-learning-hole ## Basic Information - **Project Name**: 学习小洞 - **Description**: 记录学习 ,记录生活,记录自己的成长,加油~~~ - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-12-03 - **Last Updated**: 2023-01-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 学习小洞 #### 介绍 记录学习 ,记录生活,记录自己的成长,加油~~~ - 这里是列表文本使用命令 git pull --rebase origin master 将远程仓库同步到本地,然后再重新add、commit、push - 这里是列表文本git pull --rebase origin master,直接拉取,有时候会报错如下:  error: cannot pull with rebase: You have unstaged changes. error: please commit or stash them. 这是因为本地有更改没有提交。 如果需要提交,就git add ,git commit,提交上去; 如果不需要提交更改,就git stash,暂存; 再执行:git pull --rebase origin master,即可获取更新。