Git Hooks are scripts that run before or after Git events (like committing or pushing). They help automate workflows.
Task 20: Create a Git pre-commit hook. Save the file and make it executable:
nano .git/hooks/pre-commit
Add the following script:
#!/bin/sh
echo "Running pre-commit hook..."
Save the file and make it executable:
chmod +x .git/hooks/pre-commit