# nodejs-start **Repository Path**: coopan/nodejs-start ## Basic Information - **Project Name**: nodejs-start - **Description**: No description available - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-29 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #### git 提交之后,在git上某个文件有后缀@b4c4u7之类的 是因为在这个文件里边还存在着其他的git,也就是 .git文件 导致使用 git status 的时候检测不到这个文件的变化 ##### 解决办法 `git rm -r --cached .` // 从.git/index中删除所有变更过的文件 最后再正常提交 `git add .` `git commit -m "Initial commit"` `git push origin master`