Steps to Forking A Repository

Step 1: Open the repository that you want to Fork there You can see the icon as shown in the image below in the repo’s top right corner. Now, this feature is used to Fork the repo.

Git Fork

Step 2: Go to any repository that you want to Fork here we are using a sample repo of Python official repository. 

Git Repo

You can see python/cpython. This means python is the maintainer and cpython is the project’s name.  

Step 3: Find the Fork button in the top right corner.

Fork button

Step 4: Click on Fork

Forking a repo

Step 5: Now you have your own copy of the repository. But how can we confirm for which do refer to below visual aid as follows:

 

Now we can see your user name(**********)/CPython and also below that, we have the link to the original project I forked from. 

Whatever changes are made to ‘******/python? We can make my changes here and then make a Pull Request to the maintainers of the project. Now it is in their hand if they will accept or reject your changes to the main project.

Git – Fork

Forking a repository means creating a copy of the repo. When you fork a repo, you create your own copy of the repo on your GitHub account. When several developers want to work on a project but need to make changes that are inappropriate for the original repository, forking is frequently used in open-source software development.

In this article, we will learn more about Git-Fork and its uses.

Table of Content

  • What is Git Fork?
  • Reasons For Forks 
  • Steps to Forking A Repository 
  • Fork Using Command Line
  • Difference between Git Fork vs Git Clone 
  • How To Decide Between A Git Clone And Fork?
  • Configuring Git To Sync Your Fork with the Upstream Repository 
  • Conclusion

Similar Reads

What is Git Fork?

In Git, a fork refers to a personal copy of another user’s repository. When you fork a repository, you create an independent copy that exists within your own account or organization. This copy includes all the files, commit history, and branches present in the original repository at the time of forking....

Reasons For Forks

You have your own copy of the project on which you may test your own changes without changing the original project. This helps the maintainer of the project to better check the changes you made to the project and has the power to either accept, reject or suggest something. When you clone an Open-Source project, that isn’t yours, you don’t have the right to push code directly into the project....

Steps to Forking A Repository

Step 1: Open the repository that you want to Fork there You can see the icon as shown in the image below in the repo’s top right corner. Now, this feature is used to Fork the repo....

Fork Using Command Line

Step 1: Open the terminal or gitbash and type the below command....

Difference between Git Fork vs Git Clone

Fork Clone  To enable independent development without impacting the original repository, a fork is a duplicate of a repository that has been made. Cloning a repository entails making a local duplicate of an already-existing, remotely hosted Git repository. When you fork a repository, a new copy of the repository is created under your own account enabling you to experiment and edit as necessary. A repository is completely duplicated when it is cloned, including all of its files, history, and metadata. A forking operation produces a fresh, independent copy of the repository that belongs to the forking user and is commonly carried out on a Git hosting service like GitHub or GitLab. Cloning is commonly carried out via the Git command line on a local system, and it produces an isolated, complete copy of the repository that may be edited and committed locally....

How To Decide Between Git Clone And Fork?

It is advised to utilize “git clone” if you are employed by an organization as a developer and you wish to make contributions to the source code., which is better suited for the “git push and git pull” operations via which other developers can view and validate the code....

Configuring Git To Sync Your Fork with the Upstream Repository

You must carry out the following actions to set up Git to sync your fork with the upstream repository:...

Conclusion

In this article we covered the differences between a git fork and a git clone, how to set up git to sync your fork with the upstream repository, and how to fork a repository from GitHub using the GUI and CLI using a sample repository and step-by-step instructions with screenshots....