git features

Implementation of Worktree feature in Git

Reading Time: 2 minutes What is worktree The worktree feature is used to manage multiple working trees. Implementation of worktree feature provide us to checkout multiple branches at the same time. Worktree gives a extra working copy of the repository. The new worktree is also known as Linked working tree. The worktree is not only for the branches, but with the help of worktree we can check out tags Continue Reading

Features Of Git Fetch And Git Pull command

Reading Time: 3 minutes Git Fetch command Git fetch command works on the local repository where it only fetches the data from the remote repository to have a look what all the changes has been done by the developers or what all new commits are made by them. So that it updates the developer to work. But, it doesn’t makes a copy of the work instead it allows the Continue Reading