Skip to content
Open

Demo #46

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 02-git/01-git-fork-vs-git clone.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
What is the difference between `git fork` and `git clone`, and when would you use each?

### 📝 Short Explanation
This question is often asked to check if you understand collaboration workflows in Git — especially how open-source and team projects. Many developers confuse `fork` and `clone`, so it helps to clarify the purpose and use cases of both.
This question is often asked to chertrefg rfgtg t gtgck if you understand collaboration workflows in Git — especially how open-source and team projects. Many developers confuse `fork` and `clone`, so it helps to clarify the purpose and use cases of both.

## ✅ Answer
- **`git fork`** creates a **copy of a repository on your GitHub (or GitLab, etc.) account**, letting you propose changes without write access to the original repo.
Expand Down
2 changes: 1 addition & 1 deletion 02-git/02-fork-instead-of-clone.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ From there:
4. Finally, I submitted a **pull request** to the original repository.

Using `git clone` directly on the upstream repo wouldn't have helped because I couldn’t push changes or open a PR without a fork. So, **forking gave me independence and write access on my own terms**, while still contributing back to the main project.

##demo
---