-
-
Notifications
You must be signed in to change notification settings - Fork 932
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
index.add('.') adds even .git directory into the index, and adds files also with ./ prefix #375
Comments
Thanks for letting me know ! As I see the The actual bug here seems to be left-over untracked file. I could imagine that for some reason, it added the In my own tests, I get a different, but also incorrect result: Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file: ./.git/HEAD
new file: ./.git/config
new file: ./.git/description
new file: ./.git/hooks/applypatch-msg.sample
[...]
new file: ./.git/index
new file: ./.git/info/exclude
new file: ./.git/objects/41/42082bcb939bbc17985a69ba748491ac6b62a5
[...]
new file: ./1
new file: 1
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: ./.git/index The latter should be fixed ! Meta
|
@Byron Thanks for looking into it. what is the proper way to stage content '.' for a commit then? |
I think you would have to filter this path out by yourself. It is valid to pass in iterators, and a filter could look like |
This is still a thing v.v |
Just ran into the same issue. Why is the .git folder pushed into the index? Thats totally weird! |
okay there is some kind of workaround - thank god - but its still a very weird bug! |
Just for completeness, here is the link to the comment describing the workaround. |
Compare how stock git does it (related: there was this noise about security issue of having case-insensitive filesystems and .Git file in a repo):
and how GitPython (as of 1.0.1-74-gc8b8379 as in Debian):
not sure why git says that 1 is untracked but ./1 was added... I guess also GitPython intricacy
The text was updated successfully, but these errors were encountered: