progit2
progit2 copied to clipboard
Fix type in
Pro Git >
Git Basics >
Getting a Git Repository >
Initializing a Repository in an Existing Directory:
... for Windows:
$ cd C:/Users/user/my_project
Expected:
cd C:\Users\user\my_project
CMD in Windows supports both types of slashes, but git-bash in Windows supports forward-slashes only, so for better compatibility forward slashes are used here and there is no mistake.
In the light of words of @Morganov I think we can close this issue.