我是git和github的新手,我在使用Git时遇到了麻烦。我的Git路径看起来像这个pnlSlide
。在code_snippets目录中,我有一个README.md文件。现在我要做的就是添加另一个文件,比如我在正在观看的教程中看到的人正在做什么,但似乎没什么用。
我无法在code_snippets目录中创建任何文件只有一个文件夹,当我尝试使用C:\Program Files\Git\code_snippets
这样的命令时,我收到错误git add index.html
。命令index.html did not match any files
说
git status
我似乎没有做任何事情将文件添加到code_snippets目录。
答案 0 :(得分:2)
要使用git add
添加文件,您需要将文件放在本地git存储库中(本地git存储库中将包含.git文件夹)。
您无法将此文件夹之外的某些文件添加到repo。本地存储库中的文件与.git文件夹关联。
如果该文件夹是现有文件夹且未被git跟踪,则在要跟踪其内容的根文件夹中执行git init
。这初始化了一个新的git repo。
答案 1 :(得分:1)
git add index.html
无法将文件添加到文件系统,它只将文件添加到git。
首先使用任何编辑器在code_snippets文件夹中创建index.html文件,然后使用@ar.each do |b|
@str = @str + "select '#{b[0]}' as SourceGUID, '#{b[1]}' as SourceFileName, '#{b[2]}' as FullPath, #{b[3]} as SizeInMB, #{b[4]} as ItemCount, #{b[5]} as ParentCount, #{b[6]} as ChildCount, '#{b[7]}' as CaseName, #{b[8]} as ProcessedSizeMB\n union all\n"
end
告诉git跟踪此文件