Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 735 Bytes

File metadata and controls

25 lines (15 loc) · 735 Bytes

Scripts Repository

This repository contains useful scripts for development and setup tasks.

Scripts

setupSignedCommits.sh

This script sets up SSH commit signing for Git and creates a dedicated signing key if needed. It configures Git to use SSH signatures for commits, which is useful for signing commits with SSH keys instead of GPG.

Making Scripts Executable

Before running any script, you need to make it executable using the chmod +x command. This grants execute permissions to the script file.

For example, to make the setupSignedCommits.sh script executable:

chmod +x scripts/setupSignedCommits.sh

After making it executable, you can run the script:

./scripts/setupSignedCommits.sh