git
gitversioned.utils.git ¶
Git repository utility module.
This module provides a robust interface for interacting with Git repositories. It uses a combination of subprocess calls and Pydantic models to safely and efficiently retrieve and represent Git metadata such as commits, tags, and branches.
.. code-block:: python
from gitversioned.utils.git import GitRepository
repo = GitRepository()
if repo.is_available:
print(repo.current_branch.branch_name)
GitReference ¶
Bases: BaseModel
Pydantic model representing a Git reference (commit, tag, or branch).
Provides the foundational metadata fields for Git objects and includes optional fields for specific types like author information for commits, or names for tags and branches.
.. code-block:: python
def print_metadata(metadata: GitReference):
print(f"SHA: {metadata.short_sha}, HEAD: {metadata.is_head_commit}")
Source code in src/gitversioned/utils/git.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | |
parse_git_references(data) classmethod ¶
Extracts branch and tag metadata from the 'refs' input string.
Logic identifies the current branch via 'HEAD ->' and extracts the most recent tags.
Source code in src/gitversioned/utils/git.py
GitRepository ¶
Refined interface for Git operations using Pydantic and safe execution.
Provides properties and methods to query a Git repository's status, branches, tags, and commits. It encapsulates subprocess calls to Git and returns typed Pydantic models.
.. code-block:: python
repo = GitRepository()
if repo.is_available:
print(repo.last_tag.tag_name if repo.last_tag else "No tags found")
Source code in src/gitversioned/utils/git.py
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 | |
branches property ¶
Yields all branches in the repository.
Returns:
| Type | Description |
|---|---|
Iterator[GitReference] | An iterator of GitReference objects. |
Raises:
| Type | Description |
|---|---|
NotAGitRepositoryError | If the repository is not valid. |
commit_count property ¶
Gets the total number of commits in the repository.
Returns:
| Type | Description |
|---|---|
int | The total number of commits. |
commits property ¶
Yields all commits in the repository.
Returns:
| Type | Description |
|---|---|
Iterator[GitReference] | An iterator of GitReference objects. |
Raises:
| Type | Description |
|---|---|
NotAGitRepositoryError | If the repository is not valid. |
current_branch property ¶
Gets the currently checked-out branch.
Returns:
| Type | Description |
|---|---|
GitReference | None | The GitReference object representing the current branch, or None if detached. |
current_commit property ¶
Gets the most recent commit.
Returns:
| Type | Description |
|---|---|
GitReference | None | The most recent GitReference object, or None if no commits exist. |
dirty_files property ¶
Gets a list of modified files.
Returns:
| Type | Description |
|---|---|
list[str] | A list of file paths that have uncommitted changes. |
head_name property ¶
Gets the branch name or short sha of HEAD.
Returns:
| Type | Description |
|---|---|
str | The current branch name, or the short SHA if in a detached HEAD state. |
is_available property ¶
Checks if the path is inside a valid git work tree.
Returns:
| Type | Description |
|---|---|
bool | True if the base path is a valid Git repository work tree, False otherwise. |
is_dirty property ¶
Checks if the repository has uncommitted changes.
Returns:
| Type | Description |
|---|---|
bool | True if there are uncommitted changes, False otherwise. |
last_tag property ¶
Gets the most recent tag.
Returns:
| Type | Description |
|---|---|
GitReference | None | The most recent GitReference object, or None if no tags exist. |
remote_origin_url property ¶
Gets the remote origin URL.
Returns:
| Type | Description |
|---|---|
str | The URL of the remote origin, or an empty string if not configured. |
repository_name property ¶
Gets the name of the Git repository.
Extracts the repository name from the remote origin URL if available; otherwise, falls back to the name of the root directory.
Returns:
| Type | Description |
|---|---|
str | The string name of the Git repository. |
root_directory property ¶
Gets the root directory of the Git repository.
Returns:
| Type | Description |
|---|---|
Path | The absolute path to the root directory of the Git repository. |
Raises:
| Type | Description |
|---|---|
NotAGitRepositoryError | If the repository is not valid. |
tags property ¶
Yields all tags in the repository.
Returns:
| Type | Description |
|---|---|
Iterator[GitReference] | An iterator of GitReference objects. |
Raises:
| Type | Description |
|---|---|
NotAGitRepositoryError | If the repository is not valid. |
__init__(repository_path=None) ¶
Initializes the GitRepository instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
repository_path | Path | str | None | The base path to the Git repository. Defaults to the current working directory. | None |
Source code in src/gitversioned/utils/git.py
__repr__() ¶
__str__() ¶
Return a concise string representation.
Source code in src/gitversioned/utils/git.py
NotAGitRepositoryError ¶
Bases: Exception
Raised when the directory is not a valid Git repository.
This exception is raised when Git operations are attempted on a directory that is not part of a valid Git work tree.