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:
xxxxxxxxxx
1
$ git pull
2
fatal: TaskCanceledException encountered.
3
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:
xxxxxxxxxx
1
git config --system --unset credential.helper
2
git config --global credential.helper wincred
Use admin permissions for git config --system ...
0 commentsShow commentsAdd comment
1 points
Practical example (run cmd
as administrator):
xxxxxxxxxx
1
C:\Users\greg\projects\crawlers> git pull
2
fatal: TaskCanceledException encountered.
3
A task was canceled.
4
Already up to date.
5
6
C:\Users\greg\projects\crawlers> git config --system --unset credential.helper
7
8
C:\Users\greg\projects\crawlers> git config --global credential.helper wincred
9
10
C:\Users\greg\projects\crawlers> git pull
11
Already up to date.

0 commentsAdd comment