Removing Git LFS (GitHub) Remove Git LFS from the repository and restore image files (e.g., PNGs). 1- Stop tracking files git lfs untrack *.png # Or any other format
WordPress Tweaks Table of Contents Automation Scripts WP-CLI Commands Development Setup Security Best Practices Debugging & Troubleshooting Performance Optimization
WSL ⚡ Network Host (Windows) netsh interface ip add address "vEthernet (WSL)" 192.168.100.1 255.255.255.0
LAMP (Debian 11) ⚡ Update / Upgrade Update source: @ /etc/apt/sources.list deb http://deb.debian.org/debian/ {dist} main
Vhost (Example) ⚡ Configuration <VirtualHost *:80> ServerAdmin webmaster@{domain} ServerName {domain} ServerAlias {sub}.{domain} DocumentRoot "/var/www/html/{domain}"
Nginx (Load balancing / Reverse Proxy) Load balancing / Reverse Proxy for Apache & PHP-FPM. ⚡ Installation apt-get install apache2 apt-get install php7.4-fpm apt-get install nginx
GIT (Documentation) Configuration git config --global user.name "{username}" git config --global user.email "{email}" git config --global core.ignorecase false git config --global core.editor {subl} git config --global merge.tool {filemerge}