File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -386,9 +386,12 @@ A better approach is to *fork* Bob's repository:
386386graph LR
387387 bob["Bob's repo (upstream)"]
388388 alicef(["Alice's repo (origin)"])
389- alicel(["Alice local copy (PC/laptop)"]) color=darkgreen fontcolor=darkgreen]
390- "Alice fork" -> "Alice local" [label="cloning"]
391- "Alice local" -> "Alice fork" [label="can commit"]
389+ alicel(["Alice local copy (PC/laptop)"])
390+ style alicel fill:#ffffff,stroke:#39742b,color:#39742b
391+
392+ alicef --> |cloning| alicel
393+ alicel --> |can commit| alicef
394+ ```
392395 "Alice local" -> "Bob repo" [ label="cannot commit" fontcolor=red color=red style=dashed]
393396 "Bob repo" -> "Alice fork" [ label="forking"]
394397 "Alice local" -> "Bob repo" [ label="can request pulls" fontcolor=blue color=blue style=dashed]
You can’t perform that action at this time.
0 commit comments