(project: &Path, message: &str)
| 762 | } |
| 763 | |
| 764 | pub(crate) fn commit_all(project: &Path, message: &str) { |
| 765 | git(project, &["add", "."]); |
| 766 | git( |
| 767 | project, |
| 768 | &[ |
| 769 | "-c", |
| 770 | "user.name=TraceDecay Test", |
| 771 | "-c", |
| 772 | "user.email=tracedecay-test@example.com", |
| 773 | "commit", |
| 774 | "-m", |
| 775 | message, |
| 776 | ], |
| 777 | ); |
| 778 | } |
| 779 | |
| 780 | pub(crate) async fn index_all_retrying_sync_lock(cg: &TraceDecay, context: &str) { |
| 781 | for attempt in 0..20 { |