aftershock
aftershock

Reputation: 67

Remove all Untracked from files

Today I tried a bit with github and uploading. I did a test upload to git which did work. Now, when I start a new project I see everywhere an U after my file. How do I get rid off all the U's without deleting the files?

All my code is in the following folder: C:\Code The code folder I uploaded to github was: C:\Code\adobe

Link to the image

UPDATED

By using the following command I removed all the Untracked files: rm -rf .git

Upvotes: 0

Views: 269

Answers (2)

aftershock
aftershock

Reputation: 67

By using the following command, I removed all the Untracked files: rm -rf .git

Upvotes: -1

DrCord
DrCord

Reputation: 3955

To get those files to not show the U (meaning Untracked) after them you either need to add them to the tracked files in the git repo by adding and committing them or add them to the ignored files in the .gitignore file

Upvotes: 1

Related Questions