mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-16 18:02:58 +08:00
- Use --ff-only flag to detect non-fast-forward situations - Create backup branch before resetting divergent local branch - Reset to remote branch when fast-forward is not possible - Add timestamp_utils.py for Mac datetime module compatibility - Migrate all datetime usages to centralized utilities - Bump version to 4.0.3b5 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
356 B
Python
18 lines
356 B
Python
from .timestamp_utils import (
|
|
current_timestamp,
|
|
get_timestamp_for_filename,
|
|
get_timestamp_for_path,
|
|
get_backup_branch_name,
|
|
get_now,
|
|
get_unix_timestamp,
|
|
)
|
|
|
|
__all__ = [
|
|
'current_timestamp',
|
|
'get_timestamp_for_filename',
|
|
'get_timestamp_for_path',
|
|
'get_backup_branch_name',
|
|
'get_now',
|
|
'get_unix_timestamp',
|
|
]
|