package files
func (batch *Batch) queue(op queuedUpdate) error {
err := (&refUpdateExecutor{store: batch.store}).validateQueuedUpdate(op)
if err != nil {
return err
}
batch.ops = append(batch.ops, op)
return nil
}
![]() |
index : ~runxiyu/furgit.git | |
| Unnamed repository; edit this file 'description' to name the repository. |
| aboutsummaryrefslogtreecommitdiff |
package files
func (batch *Batch) queue(op queuedUpdate) error {
err := (&refUpdateExecutor{store: batch.store}).validateQueuedUpdate(op)
if err != nil {
return err
}
batch.ops = append(batch.ops, op)
return nil
}