#gitlab
Read more stories on Hashnode
Articles with this tag
One of the best practices when using git is to keep histories on your main branch clean Sometimes, It's very hard. Here, I will share one situation...
In this article, I will walk you through my personal branching and merging strategy that I follow. If you have not gone through Part 1, I recommend...
What is a git branch? A branch is just a pointer which points to a specific commit. What is HEAD in git? The HEAD in Git is the pointer to the...
Many a time, you must have faced issues where you need to save your current changes in the project without committing it. Suppose you are working on a...
All branches are stored in .git/refs All local branches are stored in .git/refs/heads All remote branches are stored in .git/refs/remotes The git...