On Fri, Dec 02, 2022 at 08:48:46AM +0100, rozanski.s...@gmail.com wrote:

>>> After an automatic git update for windows (the update program detected that 
>>> there is a new version and performed the update to: git version 
>>> 2.38.1.windows.1) all projects in git disappeared. 
>>> In PHPStorm it writes: "fatal: not a git repository (or any of the parent 
>>> directories): .git". 
>>> Bitbucket first started up and wrote about "git tag", but now it has 
>>> stopped running.
>>> Do you have any ideas on how to fix this?

>> This is a git for windows issue, so you're better off posting here:
>> 
>> https://groups.google.com/g/git-for-windows
>> 
>> I experienced an issue a few months back during an update. Don't remember
>> what I did but somehow the installer didn't finish, the old version was
>> uninstalled but the new version failed to install, something like that. My
>> guess, git got uninstalled. Try uninstalling/reinstalling again

> Unfortunately, it didn't change anything

Can you verify Git "barely works"?

That is, open up a console window - doesn't matter if that would be a plain
old cmd.exe or Git Bash - and run

  git --version

Does it start at all?
If yes, does it print its version?
If yes, is it expected (that one, which you supposedly has installed)?

If this works, change the current directory in the console to a one with any
of your project which are under the control of Git - run

  cd X:\path\to\your\project

Use the real drive letter and a real path, of course; in Git Bash you might
use a Unix-y convention:

  cd /x/path/to/your/project

When there, does Git sees it's a Git project?
That is, run the usual commands:

  git status

  git log

  git show

Do they work?
If yes, do they print sensible information?

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/git-users/20221202104227.rrw52ecmkts3oiut%40carbon.

Reply via email to