Create a new repository Generate a local git repo in the project working directory: git init . SSH to remote server create a bare repo using the project name: ssh tim@fileserv git init --bare /files/git/xxxxxxx exit Add the files to be tracked and commit: git add blah.c git commit -a -m "Initial commit." Add the remote repo and push: git remote add origin tim@fileserv:/files/git/xxxxxxx git push --set-upstream origin master
Set the AutomaticUpdatePolicy to check in /etc/rpm-ostreed.conf: [Daemon] AutomaticUpdatePolicy=check Then reload the service: sudo rpm-ostree reload Enable the timer if not already active: sudo systemctl enable rpm-ostreed-automatic.timer --now This configures the system to check for updates automatically and display them in rpm-ostree status, but does not download or apply them. You’ll see notifications about available updates, including CVEs, without any automatic downloading.