Articles in this series
Git is a distributed version control system. It is an open source project that is actively maintained. It is free for everyone to use. To install Git,...
Consider that you have a project called e2e-tests for end-to-end testing of the app you are working on. Now, you want to make this project a Git...
In older versions of Git, the name of the branch created on running the git init command was called master. In some versions of Git, you will see a...
The way Git thinks of data is different from the way many other version control systems think of data. Many version control systems store data as a...
Git has 3 main sections - Working Directory, Staging Area and Local Repository. Working Directory: This has all our project files and the .git...
Consider that in the e2e_tests repository that you just initialized, there are some untracked files like pom.xml and files in the src...