Skip to content

Commit f3f4363

Browse files
committed
Merged main into live
2 parents 076ff0e + 699197a commit f3f4363

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/repos/git/forks.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ ms.subservice: azure-devops-repos-git
1515
[!INCLUDE [version-lt-eq-azure-devops](../../includes/version-lt-eq-azure-devops.md)]
1616
[!INCLUDE [version-vs-gt-eq-2019](../../includes/version-vs-gt-eq-2019.md)]
1717

18-
Git repo forks are useful when people want to make experimental, risky, or confidential changes to a codebase, but those changes need to be isolated from the codebase in the original repo. A new fork is basically a clone of the original repo pushed to a new remote repo. The fork is independent of the original repo, and is a complete copy unless you specify a single branch.
18+
Git repo forks are useful when people want to make experimental, risky, or concealed changes to a codebase, but those changes need to be isolated from the codebase in the original repo. A new fork is basically a new remote repo that shares the source code of the original repo.
1919

20-
As an independent copy, changes you make to your fork, such as adding commits or branches, aren't shared with the original repo. If you want to merge your codebase changes into the original repo, you must create a [pull request](pull-requests.md) (PR) to request review and approval of those changes.
20+
As an independent version, changes you make to your fork, such as adding commits or branches, are hidden from the original repo. If you want to merge your codebase changes into the original repo, you must create a [pull request](pull-requests.md) (PR) to request review and approval of those changes.
2121

2222
The forking process doesn't transfer any permissions, policies, or build pipelines from the original repo to your fork.
2323

@@ -123,7 +123,7 @@ git remote set-url upstream <clone URL>
123123

124124
## Push local changes to your fork
125125

126-
When you fork, you create a personal and independent copy of the remote repo. So, there's nothing to prevent you from working directly in the `main` branch of the local clone and then pushing that work to the `main` branch of your fork. However, it's generally better to use [feature branches](git-branching-guidance.md#use-feature-branches-for-your-work) for your work. By using feature branches:
126+
When you fork, you create a personal version of the original repository (original repository is referred as "upstream"). Fork is independent from the upstream, but fork shares the code and retains a link to the upstream, allowing for future synchronization. So, there's nothing to prevent you from working directly in the `main` branch of the local clone and then pushing that work to the `main` branch of your fork. However, it's generally better to use [feature branches](git-branching-guidance.md#use-feature-branches-for-your-work) for your work. By using feature branches:
127127

128128
- You can maintain multiple, independent workstreams simultaneously.
129129

0 commit comments

Comments
 (0)