When I first time installed git I used a wrong link to a repository.
I can see that in my config file found in .git folder in my Android Studio project has these settings:
ignorecase = true
[remote "origin"]
url = https://github.com/NrkSensors/Android.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch]
autosetuprebase = always
[branch "master"]
rebase = true
remote = origin
merge = refs/heads/master
[remote "github"]
url = https://github.com/Muuddz/AndroidApp.git
fetch = +refs/heads/*:refs/remotes/github/*
I want this removed https://github.com/Muuddz/AndroidApp.git because this repository dosn't exist anymore. I can't find any ways in Android Studio to change it. What should I remove from the file to not corrupt anything?