What is a Fork, and when should I use it instead of just creating a Branch? #1042
Answered
by
arthurrochamoreira
stuartferr
asked this question in
Q&A
-
|
ask |
Beta Was this translation helpful? Give feedback.
Answered by
arthurrochamoreira
Apr 17, 2026
Replies: 1 comment
-
|
You should use a Fork when you want to contribute to a project where you do not have official write permissions (such as a public open-source repository); it creates a complete copy of the project under your own account. In contrast, a Branch is used when you are already a collaborator on a repository and want to isolate a specific feature or fix within the same project without affecting the main line of development. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
stuartferr
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You should use a Fork when you want to contribute to a project where you do not have official write permissions (such as a public open-source repository); it creates a complete copy of the project under your own account. In contrast, a Branch is used when you are already a collaborator on a repository and want to isolate a specific feature or fix within the same project without affecting the main line of development.