MuhammadTausif / PyComplete

0 stars 0 forks source link

Fixing ORIG_HEAD #14

Closed MuhammadTausif closed 2 months ago

MuhammadTausif commented 2 months ago

Fixing git head

Error: fatal: update_ref failed for ref 'ORIG_HEAD': cannot lock ref 'ORIG_HEAD': unable to resolve reference 'ORIG_HEAD': reference broken

Warning: Your branch is behind 'origin/plots' by 28 commits, and can be fast-forwarded.

Fix:

  1. Test-Path .git\ORIG_HEAD
  2. Remove-Item .git\ORIG_HEAD -Force
  3. git update-ref ORIG_HEAD HEAD
  4. git pull

Status: done

MuhammadTausif commented 2 months ago

Fixed the git head.