Skip to content

Instantly share code, notes, and snippets.

View PascalUlor's full-sized avatar
🏠
Working from home

Pascal Ulor PascalUlor

🏠
Working from home
View GitHub Profile
@vanpeerdevelopment
vanpeerdevelopment / remove-git-config.sh
Created January 28, 2014 18:52
Command to remove a git configuration.
# Remove repository configuration
git config --unset [key]
# Remove global configuration
git config --global --unset [key]
# Remove system configuration
git config --system --unset [key]