mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 04:39:07 -04:00
refactor!: use Oid instead of String for arguments
This commit is contained in:
parent
23787adc3a
commit
1972c6d1ab
39 changed files with 264 additions and 290 deletions
|
@ -126,9 +126,9 @@ class RebaseOperation {
|
|||
);
|
||||
}
|
||||
|
||||
/// The commit ID being cherry-picked. This will be populated for
|
||||
/// Returns the commit [Oid] being cherry-picked. This will be populated for
|
||||
/// all operations except those of type [GitRebaseOperation.exec].
|
||||
Oid get id => Oid.fromRaw(_rebaseOperationPointer.ref.id);
|
||||
Oid get oid => Oid.fromRaw(_rebaseOperationPointer.ref.id);
|
||||
|
||||
/// The executable the user has requested be run. This will only
|
||||
/// be populated for operations of type [GitRebaseOperation.exec].
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue