clean build for version 1.4.5 with fixes of security funtionalities, logic branches, etc. Already tested and working fine
This commit is contained in:
25
restore_v1.4.0.sh
Normal file
25
restore_v1.4.0.sh
Normal file
@@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Script to restore v1.4.0 (last known working version)
|
||||
# Run this to see what changed between working version and current broken state
|
||||
|
||||
echo "=== Git History ==="
|
||||
git log --oneline --all
|
||||
|
||||
echo ""
|
||||
echo "=== Current Status ==="
|
||||
git status
|
||||
|
||||
echo ""
|
||||
echo "=== Files changed since v1.4.0 ==="
|
||||
git diff 430e063f915efd056fb874318f4c70b0fe4ed08d HEAD --name-only
|
||||
|
||||
echo ""
|
||||
echo "=== To restore v1.4.0 (BACKUP FIRST!) ==="
|
||||
echo "git stash save 'backup-before-restore'"
|
||||
echo "git reset --hard 430e063f915efd056fb874318f4c70b0fe4ed08d"
|
||||
|
||||
echo ""
|
||||
echo "=== To see specific file changes ==="
|
||||
echo "git diff 430e063f915efd056fb874318f4c70b0fe4ed08d HEAD includes/class-Sheet-Data-Checker-Pro.php"
|
||||
echo "git diff 430e063f915efd056fb874318f4c70b0fe4ed08d HEAD assets/admin-editor.js"
|
||||
Reference in New Issue
Block a user