Skip to content
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

Remove special characters such as * in paths and filenames #241

Closed
IshamMohamed opened this issue Oct 17, 2017 · 4 comments
Closed

Remove special characters such as * in paths and filenames #241

IshamMohamed opened this issue Oct 17, 2017 · 4 comments

Comments

@IshamMohamed
Copy link
Contributor

Its nearly impossible for Windows users to git clone this repository since it has special characters such as * in paths and filenames. Please remove them.
Please refer this like to get the list of characters to be replaced.

@maazadeeb
Copy link
Contributor

For reference, a full log of the error that appears

$ git clone https://github.com/maaz93/Algorithms_Example.git
Cloning into 'Algorithms_Example'...
remote: Counting objects: 1512, done.
remote: Compressing objects: 100% (41/41), done.
remote: Total 1512 (delta 22), reused 36 (delta 8), pack-reused 1462
Receiving objects: 100% (1512/1512), 326.30 KiB | 447.00 KiB/s, done.
Resolving deltas: 100% (552/552), done.
**fatal: cannot create directory at 'A*Search': Invalid argument**
warning: Clone succeeded, but checkout failed.
You can inspect what was checked out with 'git status'
and retry the checkout with 'git checkout -f HEAD'

@thuva4
Copy link
Owner

thuva4 commented Oct 18, 2017

@IshamMohamed @maaz93 Thank you. I will remove those.

@maazadeeb
Copy link
Contributor

After looking through the repo, I think only Dijkstra's is an invalid folder name. Note that it has an extra space at the end of the name and that is causing the problem.

Also, as per @IshamMohamed 's link, the following characters are invalid

< (less than)
> (greater than)
: (colon)
" (double quote)
/ (forward slash)
\ (backslash)
| (vertical bar or pipe)
? (question mark)
* (asterisk)

Right now, only the space in Dijkstra's is causing the problem.

@thuva4
Copy link
Owner

thuva4 commented Oct 19, 2017

@maaz93 Thank you. I will remove the space.

@thuva4 thuva4 closed this as completed Nov 4, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants