一.添加邮箱和账号时会出现not in a git directory
- 先打开Git Bash所在的文件夹
- 打开git-cmd.exe
- 先git config –global user.email “你的邮箱号”
- 再输git config –global user.name “账号名”
二.清空所有用户名和密码
- git config –system –unset credential.helper
- 先git config –global user.email “你的邮箱号”
- 再输git config –global user.name “账号名”
三.添加忽略文件
- 根目录添加【.gitignore】文件,复制一下需要忽略的目录或文件。
-
node_modules/ uni_modules/ .project unpackage/ .DS_Store
- 如果忽略无效👇
-
// 1、切到对应的项目目录下面 cd /Users/xxx/xxx // 2、对已追踪的文件,先清除原文件的缓存 git rm -r --cached . // 3、重新提交推送生效文件 git add . git commit -m “更新忽略文件” git push