Test commit instructions
@zkortum let's try something pretty simple here:
- Create a blank .txt file with whatever title you'd like, and save it to
path/to/rtgm-py-calculator/testsin your local repository. - Open up Git Bash, navigate to
path/to/rtgm-py-calculatorand run$git status. You should get something like the following in your output:
$ git status
On branch main
Your branch is up to date with 'origin/main'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
tests/testCommit.txt
nothing added to commit but untracked files present (use "git add" to track)
- Start tracking your new file using
$git add tests/testCommit.txt. (try$git statusagain and see how the output changes. - Commit your change using
$git commit -m "informative commit message".
Edited by Andrew J. Makdisi