Github For Ubuntu Upd
For Ubuntu users working with GitHub, several features and tools can streamline your workflow, whether you are trying to keep your system updated, manage your repositories, or automate your CI/CD pipelines. 1. GitHub CLI (gh)
In this article, we will explore:
git config --global credential.helper cache
# Or use libsecret on GNOME:
sudo apt install -y libsecret-1-0 libsecret-1-dev
cd /usr/share/doc/git/contrib/credential/libsecret
sudo make
git config --global credential.helper /usr/share/doc/git/contrib/credential/libsecret/git-credential-libsecret
#!/bin/bash
# upd.sh - Ubuntu System Update Script
echo "Starting system update..."
sudo apt update
sudo apt upgrade -y
sudo apt autoremove -y
sudo apt autoclean
echo "Update completed on $(date)" >> /var/log/upd.log