Git is a version control system.
Clients
For a standalone client, I use GitHub Desktop Plus. If I’m using Visual Studio Code, I use its built-in version control panel. I rarely use the git CLI directly, reserving it mostly for advanced operations.
Hosting
Advanced operations
Fast-forward without checking out files
The SilverBullet space is always in sync. But the Git repository is not and will have uncommitted changes. A regular merge is not sufficient in my workflow, and stashing changes is prime for breakage.
git symbolic-ref HEAD refs/heads/null-branch
git fetch origin main:main
git symbolic-ref HEAD refs/heads/mainThis stages changes for some reason? Wouldn’t know why, so I just unstage them separately. This allows me to push changes on two separate devices.