Git Push appears remote: error: couldn't set 'refs/heads/master'

remote libraries are created on a corporate shared network, and only the creator can push, while others can"t push.

git.exe push --progress "origin" master:master

Enumerating objects: 13, done.
Counting objects: 100% (13/13), done.
Delta compression using up to 4 threads
Compressing objects: 100% (7/7), done.
Writing objects: 100% (7/7), 27.16 KiB | 88.00 KiB/s, done.
Total 7 (delta 2), reused 0 (delta 0)
**remote: error: couldn"t set "refs/heads/master"**
To //192.168.xx.xxx/xx/xxxx
! [remote rejected] master -> master (failed to update ref)
error: failed to push some refs to "//192.168.xx.xxx/xx/xxxx"

which god saved the life, the whole day can not come out, Baidu data is pitifully few, but also can not be on Google. Cry to death T T

Git
May.24,2022

in your project folder, open the terminal and run the following command:

echo ref: refs/heads/master >.git/HEAD
Menu