On November 27, 2022 1:26 PM, Kirill Frolov wrote: >When i run "git ls-remote `origin` HEAD" on windows machine i get >"fatal: ''origin'' does not appear to be a git repository" > >When i run the same command on same repository on linux machine i get >"b7efcb7055a6d45f53c05270a2420aaedaba4d02 HEAD" Try removing the quote characters around origin under Windows. I can reproduce this on Linux using "'origin'", so it appears that the single quotes in your Windows command prompt are being passed in with origin instead of removed as in Linux. -Randall