Errors
fatal: the remote end hung up unexpectedly
happens on large size pushes
git config --global http.postBuffer 1048576000
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999
ERROR- error: RPC failed; curl 55 LibreSSL SSL_write: error:02FFF020:system library:func(4095):Broken pipe, errno 32 send-pack: unexpected disconnect while reading sideband packet
git push -f
Unable to Pull/Push
error msg: git not possible to fast forward
git pull --rebase origin dev
fatal bad object: HEAD
Solution: run git fetch
Warning you have divergent branches
solution: git config --global pull.ff only
fatal: refusing to merge unrelated histories
git pull origin main --allow-unrelated-histories
