-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
Improve description of clone #1018
Comments
I like your inverted language suggestion. I think technically git doesn't distinguish between which repository is the main source of truth (any repo can send PRs to another repo) but almost all common usage of Git is done with a main source of truth repository. But yeah for the purposes of the app maybe we just say "you run this command to get a copy" and go from there as you said 😇 |
Feel free to throw up a PR to wordsmith this a bit |
There is indeed no main source of truth. However, there is an asymmetry in that the clone has a remote
I can try and wordsmith this in a PR, but it will be a couple of days before I come to that. |
I find this description a bit confusing:
learnGitBranching/src/levels/remote/clone.js
Line 71 in a78e4d1
clone
to get a local copy of that repository."git clone
without specifying a remote url. Maybe it's worth to require passing in some dummy urlgit clone https://example.com/myrepo.git
to make the example more realistic. Or even make a small example repo on github `git clone https://github.com/pcottle/learnGitBranching-clone-example.git)/, so that the call would work in real life (and users can see the repo in GitHub - though the clone operation in the tutorial is still a dummy of course).The text was updated successfully, but these errors were encountered: