The screen shows a fatal merge conflict. The clock is ticking. You need git reset—but your repository lives behind Twingate.
This is where clarity matters. Twingate enforces zero-trust network access, which can block direct Git commands if your local environment isn’t authenticated. Resetting a branch in this setup is simple once you respect both Git’s state model and Twingate’s secure tunnel requirements.
First, confirm Twingate is active. Run twingate status and make sure the connector is online. An inactive session will cause fatal: unable to connect to remote repository errors when contacting your origin.
To hard reset a branch to a specific commit:
git fetch origin
git reset --hard <commit-hash>
git push origin HEAD --force
With Twingate, these commands will route through the private network, so the fetch step depends on the tunnel being established. If the tunnel drops mid-operation, reauthenticate before retrying.