refactor-reset-revert #1
Reference in New Issue
Block a user
Delete Branch "refactor-reset-revert"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
- Update regex to extract only semantic version numbers (x.y.z) - Prevents matching entire string like '2.52.0.windows.1' - Uses '^(\d+(?:\.\d+){1,2})' to match version at start of string only - Extracts '2.52.0' from '2.52.0.windows.1' for proper version comparison - Handles Windows Git version suffixes correctly - Maintains compatibility with standard version formats