I want to add 2 text files to a {master} project but I keep getting a list of untracked files that have nothing to do with my current project. Why is this happening and how can I solve it? MacOS v10.15.7 Catalina Terminal
Added 1st text file:
git add file1.txt
Added 2nd text file:
git add file2.txt
Viewing working directory and staged files:
git status
Changes to be committed:
new file: file1.txt
new file: file2.txt
PLUS Keep getting a list of Untracked Files:
.Trash/
.anaconda/
.config/
.idlerc/
.ipython/
.local/
.matplotlib/
.npm/
.spyder-py3/
.vscode/
Applications/
Creative Cloud Files/
Desktop/
Documents/
Downloads/
Library/
Moon/
Movies/
Music/
Pictures/
Public/
helloworld/
opt/
I deleted pronto!
rm -rf ~/.git
Checked
git status
Output
fatal: not a git repository (or any of the parent directories): .git
I'll start my project all over again, more aware!