-
Notifications
You must be signed in to change notification settings - Fork 740
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
Cannot process files that have names beginning with a dot #75
Comments
I see here that the error message uses a semicolon rather than a colon. Does this mean you actually mis-typed the command and used the wrong character here, or does it mean that PowerShell is screwy in yet another way and that it unhelpfully transliterated the colon into a semicolon for you? (If so, this seems like it'd be at least the third way that PowerShell screws things up for users; see #36 and #56) |
No response; I'll assume you just typoed the ':' into a ';' based on the error message and close this out. Let me know if that's a bad assumption and you have any more information. |
I'm facing with this right now.
|
And like @leni8ec, I was able to get this to work using a
|
And what happens if you run
? Note that I have put an |
Wow, so you clearly have a single colon in the line you typed, and echo doesn't munge it, but filter-repo clearly doesn't see a colon. What happens if you change your command from
to
? Do you still get the |
This command can not be performed:
git filter-repo --path-rename Assets/.gitattributes:.gitattributes
I tried to specify the files in quotation marks
`
or"
, but this had no effect.The problem was solved only using the same command, but through the file:
git filter-repo --paths-from-file ..\file_name.txt
The text was updated successfully, but these errors were encountered: