use other git modules within your repo by reference
git-scm.com/book documentation
SE Radio 652: Christian Mesh on OpenTofu
5 days ago
js / python / linux / .NET C# F# / MS-SQL / postgresql / maths / data / logic / thought / SmartCard / EMV / django / HTML
#region Dump Output Dates to File string filePath = "c:/dev/projected_dates.csv"; string actualDatesCSV = string.Join(",", actualDates .OrderBy(x => x) .Select(x => x.ToShortDateString()) ); using (var sw = new System.IO.StreamWriter(filePath)) { sw.Write(actualDatesCSV.Replace(",", "\n")); } #endregion