GitHub on Ubuntu
Git and GitHub Setup on Ubuntu 24.04
Initial Question
Human: I have just installed a new Ubuntu 24.04 on my notebook. Please provide me complete instructions on setting up git and GitHub.
Assistant: # Setting Up Git and GitHub on Ubuntu 24.04
Here’s a complete guide to setting up Git and GitHub on your new Ubuntu 24.04 installation:
Install Git
First, let’s install Git via the terminal:
sudo apt updatesudo apt install git
Configure Git
After installation, configure your identity:
git config --global user.name "Marco Antonio Gonzalez Junior"git config --global user.email "m@rco.sh"git config --global core.editor "vim"git config --global init.defaultBranch main
Make sure to use the same email address as your GitHub account.
Generate SSH Key
Using SSH keys is more secure than password authentication:
ssh-keygen -t ed25519 -C "m@rco.sh"
Press Enter to accept the default file location. You can set a passphrase for additional security.
Start the SSH Agent
eval "$(ssh-agent -s)"ssh-add ~/.ssh/id_ed25519
Add SSH Key to GitHub
Copy your public key to clipboard:
cat ~/.ssh/id_ed25519.pub
Then:
- Go to GitHub.com and sign in
- Click your profile photo in the upper right corner
- Go to Settings
- Click “SSH and GPG keys” in the sidebar
- Click “New SSH key”
- Give your key a descriptive title (e.g., “Ubuntu Notebook”)
- Paste your key into the “Key” field
- Click “Add SSH key”
Verify Connection
Test your SSH connection:
ssh -T git@github.com
You should receive a confirmation message.
Optional Git Configurations
Set default branch name:
git config --global init.defaultBranch main
Setup a credential helper to cache your password:
git config --global credential.helper cache
Create Your First Repository
- Create a new repository on GitHub
- Clone it to your local machine:
Terminal window git clone git@github.com:yourusername/your-repo-name.git
Basic Git Workflow
Here’s a basic workflow:
# Make changes to filesgit add .git commit -m "Descriptive message about changes"git push origin main
Is there any specific part of Git or GitHub setup you’d like me to elaborate on?
Follow-up Question
Human: Provide instructions to all commits be signed
Assistant: # Setting Up Signed Git Commits
Signing your Git commits adds an extra layer of verification that you are the author of the changes. Here’s how to set up commit signing on your Ubuntu 24.04 system:
1. Generate a GPG Key
First, install the GPG tools if not already present:
sudo apt updatesudo apt install gnupg
Generate a new GPG key:
gpg --full-generate-key
When prompted:
- Select the key type (RSA and RSA is recommended)
- Choose a key size (4096 bits is recommended for security)
- Choose how long the key should be valid (0 = key does not expire)
- Enter your name and email address (use the same email as your GitHub account)
- Set a secure passphrase
2. Get Your GPG Key ID
List your GPG keys to find the ID:
gpg --list-secret-keys --keyid-format=long
Look for the line that starts with sec
and note the key ID after the /
(it’s a hexadecimal string).
3. Configure Git to Use Your GPG Key
Tell Git to use your key for signing:
git config --global user.signingkey YOUR_KEY_ID
Enable automatic signing for all commits:
git config --global commit.gpgsign true
4. Add Your GPG Key to GitHub
Export your public GPG key:
gpg --armor --export YOUR_KEY_ID
This will print your public key to the terminal. Copy it including the begin and end markers.
Then:
- Go to GitHub.com and sign in
- Click your profile photo → Settings
- Go to “SSH and GPG keys”
- Click “New GPG key”
- Paste your key in the “Key” field
- Click “Add GPG key”
5. Configure GPG Agent (Optional but Recommended)
To avoid entering your passphrase every time you commit, set up the GPG agent:
Create or edit the GPG agent configuration file:
mkdir -p ~/.gnupgecho "default-cache-ttl 34560000" >> ~/.gnupg/gpg-agent.confecho "max-cache-ttl 34560000" >> ~/.gnupg/gpg-agent.conf
Restart the GPG agent:
gpgconf --kill gpg-agentgpg-agent --daemon
6. Test a Signed Commit
Create a test commit to verify everything works:
# Make a change to a filegit add .git commit -m "Test signed commit"git push
You should see a “Verified” badge next to your commit on GitHub.
Troubleshooting
If you encounter issues with the GPG signing process:
-
Ensure the GPG key email matches your Git email:
Terminal window git config --global user.emailgpg --list-keys -
For “secret key not available” errors:
Terminal window export GPG_TTY=$(tty)Add this line to your
~/.bashrc
or~/.zshrc
file for persistence. -
For GPG passphrase prompt issues, install pinentry:
Terminal window sudo apt install pinentry-cursesecho "pinentry-program /usr/bin/pinentry-curses" >> ~/.gnupg/gpg-agent.confgpgconf --kill gpg-agent
Now all your commits will be automatically signed, verifying your identity to others.