progit / progit2

Pro Git 2nd Edition
Other
5.71k stars 1.88k forks source link

Fix type in #1764

Closed frijger closed 1 year ago

frijger commented 2 years ago

Pro Git >

Git Basics >

Getting a Git Repository >

Initializing a Repository in an Existing Directory:

... for Windows:

$ cd C:/Users/user/my_project

Screenshot from 2022-06-19 13-00-33 Expected:

cd C:\Users\user\my_project
Morganov commented 1 year ago

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.

KZiemian commented 1 year ago

In the light of words of @Morganov I think we can close this issue.