Return the persisted git access token, or ``None`` if not set.
()
| 398 | |
| 399 | @staticmethod |
| 400 | def get_git_token() -> Optional[str]: |
| 401 | """Return the persisted git access token, or ``None`` if not set.""" |
| 402 | return get_default_config().load_git_token() |
| 403 | |
| 404 | @staticmethod |
| 405 | def get_token() -> Optional[str]: |
no test coverage detected