AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
#  windows 下 `.gitconfig` 文件中添加 ``` [credential]     helper = store ``` 或者在`git bash` 中执行 ``` git config --global credential.helper store ``` 我的原生是`helper = manager` 如果修改不成功的话,修改 `C:\\Users\\Administrator` 的 `.git-credentials` 文件 把自己的账号和密码输入进去,如下: ``` https://dlc108725426%40qq.com:hf5144672@git.oschina.net ``` #  Linux 下 `/root/.gitconfig` 进行修改 ``` [credential]     helper = store ```