I am trying to simply clone a git repository with git clone
and then ask for a status update which should give me this:
$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean
when however after I have done this I get:
$ git status
warning: could not open directory 'Application Data/': Permission denied
warning: could not open directory 'Cookies/': Permission denied
warning: could not open directory 'Local Settings/': Permission denied
warning: could not open directory 'My Documents/': Permission denied
warning: could not open directory 'NetHood/': Permission denied
warning: could not open directory 'PrintHood/': Permission denied
warning: could not open directory 'Recent/': Permission denied
warning: could not open directory 'SendTo/': Permission denied
warning: could not open directory 'Start Menu/': Permission denied
warning: could not open directory 'Templates/': Permission denied
On branch master
No commits yet
Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file: CS1998-puzzle-repo
Untracked files:
(use "git add <file>..." to include in what will be committed)
.anaconda/
.bash_history
.cisco/
.conda/
.condarc
.gitconfig
.idlerc/
.ipynb_checkpoints/
.ipython/
.jupyter/
.matplotlib/
.minttyrc
.spyder-py3/
3D Objects/
Anaconda3/
AppData/
Contacts/
Desktop/
Documents/
Downloads/
Dropbox/
Favorites/
Google Drive/
IntelGraphicsProfiles/
Learning .ipynb
Learning Variables.ipynb
Links/
MicrosoftEdgeBackups/
Music/
NTUSER.DAT
NTUSER.DAT{d0151108-541c-11ea-a1f7-b1e0d7960e94}.TM.blf
NTUSER.DAT{d0151108-541c-11ea-a1f7-b1e0d7960e94}.TMContainer00000000000000000001.regtrans-ms
NTUSER.DAT{d0151108-541c-11ea-a1f7-b1e0d7960e94}.TMContainer00000000000000000002.regtrans-ms
OneDrive/
Pictures/
Saved Games/
Searches/
Untitled.ipynb
Untitled1.ipynb
Untitled2.ipynb
Videos/
ntuser.dat.LOG1
ntuser.dat.LOG2
ntuser.ini
opera autoupdate/
projectpart1/
I have tried cloning it multiple times, I have read the git documentation and a few other related stack posts but I can't get it to work properly. Thus I want to get rid of all the unnecessary red files and just get the clone to work properly.