You are on page 1of 1

Another feature of Git that makes it apart from other SCM tools is that 

it is
possible to quickly stage some of our files and commit them without
committing other modified files in our working directory.
o Maintain the clean history
Git facilitates with Git Rebase; It is one of the most helpful features of Git. It
fetches the latest commits from the master branch and puts our code on top of
that. Thus, it maintains a clean history of the project.

Benefits of Git
A version control application allows us to keep track of all the changes that we make in
the files of our project. Every time we make changes in files of an existing project, we
can push those changes to a repository. Other developers are allowed to pull your
changes from the repository and continue to work with the updates that you added to
the project files.

Some significant benefits of using Git are as follows:

You might also like