-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
git touch
with multiple filenames does not work as expected
#467
Comments
I ask because I've already fixed for my usage, but I'd like to contribute that upstream. |
From
So Regardless, I think |
Happy to submit a PR... It's an easy fix. |
Do you mind leaving this issue open until I have a PR to replace it (and link it appropriately)? I don't want to lose track of this issue... |
No problem, reopened. |
Closed by #481 |
Little gotcha:
WTF? Internally, the
git-touch
script usesfilename="$*"
andtouch "$filename"
, which turns the argument listA B
into"A B"
: a single file named"A B"
not two files namedA
andB
).Patch / PR accepted?
The text was updated successfully, but these errors were encountered: