EN
Git - git pull fatal: TaskCanceledException encountered. A task was canceled.
2
answers
8
points
Sometimes when I run git pull command on my project I get following error:
$ git pull
fatal: TaskCanceledException encountered.
A task was canceled.
The solution is to restart Windows. Is there any other approach that sovles the problem?
2 answers
1
points
I had same problem.
Solved with:
git config --system --unset credential.helper
git config --global credential.helper wincred
Use admin permissions for git config --system ...
0 comments
Add comment
1
points
Practical example (run cmd
as administrator):
C:\Users\greg\projects\crawlers> git pull
fatal: TaskCanceledException encountered.
A task was canceled.
Already up to date.
C:\Users\greg\projects\crawlers> git config --system --unset credential.helper
C:\Users\greg\projects\crawlers> git config --global credential.helper wincred
C:\Users\greg\projects\crawlers> git pull
Already up to date.

0 comments
Add comment