Files
2025-12-08 12:40:45 +01:00

13 lines
405 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/bin/bash
echo "🔧 Installation de l'environnement de développement..."
# Installer les aliases Git
source .devtools/git-aliases.sh
# Ajouter .devtools au gitignore local (pas versionné)
echo "/.devtools/" >> .git/info/exclude
echo "✅ Installation terminée !"
echo "️ Les outils de dev sont maintenant ignorés localement"
echo "🚀 Vous pouvez maintenant utiliser: git deploy staging"