You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HI, I am having this problem on windows 8 (I did not test windows7 yet but I ll do that asap), where the untracked_file argument result as empty no matter what, I double tested same code on CentOs and everytihng is fine. here is a simple code I am running:
Here is the log:
---------- status
On branch master
Your branch is up-to-date with 'origin/master'.
Untracked files:
(use "git add ..." to include in what will be committed)
attributes/shader_float3_attr.py
nothing added to commit but untracked files present (use "git add" to track)
---------- untracked
[]
So as you can see the status() can correctly see the untracked file but for some reason the property untracked_files is failing along the line.
Any guess?
The text was updated successfully, but these errors were encountered:
I have not encountered this error before, but am not using it on windows (or windows, for that matter) either.
You can track what it calls by setting the GIT_PYTHON_TRACE variable to 'full' . If the results are as expected, it might be some error in the git-python parser.
Please feel free to post the results here for further examination.
I just verified this is working. Besides, the respective test is not failing on windows either.
Please be sure to use the latest version available on pypi (currently 0.3.4).
HI, I am having this problem on windows 8 (I did not test windows7 yet but I ll do that asap), where the untracked_file argument result as empty no matter what, I double tested same code on CentOs and everytihng is fine. here is a simple code I am running:
repo = git.Repo("C:/Users/Marco\WORK_IN_PROGRESS/python/animshader")
print repo.git.status()
print repo.untracked_files
Here is the log:
---------- status
On branch master
Your branch is up-to-date with 'origin/master'.
Untracked files:
(use "git add ..." to include in what will be committed)
nothing added to commit but untracked files present (use "git add" to track)
---------- untracked
[]
So as you can see the status() can correctly see the untracked file but for some reason the property untracked_files is failing along the line.
Any guess?
The text was updated successfully, but these errors were encountered: