#git
Read more stories on Hashnode
Articles with this tag
Consider that you have added all the required changes to the staging area. To read more about staging changes, refer to this blog. If you run 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...
Git has 3 main sections - Working Directory, Staging Area and Local Repository. Working Directory: This has all our project files and the .git...
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...
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...
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...