mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 09:51:22 -06:00

* WIP * Convert checkout() context manager to a class * Misc cleanup * Drop unique constraint from Change model * Extend staging tests * Misc cleanup * Incorporate M2M changes * Don't cancel wipe out creation records when an object is deleted * Rename Change to StagedChange * Add documentation for change staging
14 lines
360 B
Markdown
14 lines
360 B
Markdown
# Branches
|
|
|
|
A branch is a collection of related [staged changes](./stagedchange.md) that have been prepared for merging into the active database. A branch can be mered by executing its `commit()` method. Deleting a branch will delete all its related changes.
|
|
|
|
## Fields
|
|
|
|
### Name
|
|
|
|
The branch's name.
|
|
|
|
### User
|
|
|
|
The user to which the branch belongs (optional).
|