I created a new repo called BranchTest on GitHub.
I created a directory OneDrive - Atlantic TU\GitHub\BranchTest and created a single batch file in the directory, setup.cmd.
echo "# BranchTest" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/GreatlyImprovedTechnology/BranchTest.git
git push -u origin main
The question arises, should I have included this file in the repo, or should I have excluded any such local build files in a .gitignore file?