# On branch master # Changes to be committed: (已经在stage区, 等待添加到HEAD中的文件) # (use "git reset HEAD <file>..." to unstage) # #modified: hello.py # # Changes not staged for commit: (有修改, 但是没有被添加到stage区的文件) # (use "git add <file>..." to update what will be committed) # (use "git checkout -- <file>..." to discard changes in working directory) # #modified: main.py # # Untracked files:(没有tracked过的文件, 即从没有add过的文件) # (use "git add <file>..." to include in what will be committed) # #hello.pyc
git bash进入你的项目目录,输入:
git config --global credential.helper store
原文:https://www.cnblogs.com/dazhu123/p/12837466.html