Reputation: 67
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
UPDATED
By using the following command I removed all the Untracked files: rm -rf .git
Upvotes: 0
Views: 269
Reputation: 67
By using the following command, I removed all the Untracked files: rm -rf .git
Upvotes: -1
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