目录
操作步骤
git add demo.html // 提交到暂存区
git stash -u -k // 忽略其他修改,关键一步
git commit -m 'xxxx' // 提交暂存区
git pull // 拉取合并
git push origin master // 推到远程仓库
git stash pop // 恢复之前忽略的文件(非常重要的一步)
目录
git add demo.html // 提交到暂存区
git stash -u -k // 忽略其他修改,关键一步
git commit -m 'xxxx' // 提交暂存区
git pull // 拉取合并
git push origin master // 推到远程仓库
git stash pop // 恢复之前忽略的文件(非常重要的一步)