如何从GitHub存储库中删除不正确的路径名?

时间:2015-04-19 23:39:12

标签: java git netbeans github gitignore

如果您查看my repository or GitHub,可以看到它的路径为/Documents/NetbeanProjects/

我以前从来没有这样做过,如何配置Netbeans或GitHub不包含它?
我不知道我为此做了什么。

1 个答案:

答案 0 :(得分:1)

最近很可能是你错误地添加并犯了它。要删除它,你可以

git rm --cached -r Documents/NetbeanProjects/REPONAME
echo "Documents/NetbeanProjects/REPONAME" >> .gitignore
git add .gitignore
git commit -m "Removing Incorrectly corrected REPONAME and adding to gitignore"

编辑 :您已在错误的目录中创建了存储库,而不是在Documents/NetBeansProjects/reponame中创建存储库,您已在主目录中创建了存储库。 / p>

因此,请在正确的文件夹中重新创建存储库,然后使用

删除当前的存储库
rm -rf .git/
cd Documents/NetBeansProjects/REPONAME && git init
git add . && git commit -m "Initialising project"