当我尝试使用git时,完全是noob问题。我试图创建一个新的存储库,我想我只是遵循这些思路:
echo "# verstka" >> README.md
git init
git add README.md
git commit -m "first commit"
然后发生了一些事情。当我按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
Untracked files:
(use "git add <file>..." to include in what will be committed)
.FBReader/
.bash_history
.gitconfig
.instagiffer/
.mySimula/
.ssh/
那里还有更多文件。最后,“没有添加任何内容来提交但存在未跟踪的文件(使用“ git add”进行跟踪)”。 有人可以友好地告诉我下一步该怎么做,因为我显然不必暂存或提交所有这些文件?
答案 0 :(得分:1)
首次初始化git目录时,您已经运行了
git init
这将创建一个文件夹
.git
要删除所有git信息,只需删除目录
rm -rf .git/
警告:您将丢失所有git历史记录!
好像您在主目录中运行了git init。下次,首先创建一个新文件夹:
mkdir project1
cd project1
git init
...
答案 1 :(得分:0)
我猜您是在.git
目录(或相对于工作目录的上目录)中意外创建了$HOME
文件夹,并且您正在从中看到警告。只需删除.git
中的$HOME
,除非您的$HOME/.git
是有意的,否则它不会破坏任何真实文件。