git More realistic Git workflow and branching strategy One of the major issue while using git is setting the workflow and branch creation/merge strategy. The complexity increases as the number of developers and no. of parallel feature
git How to create git command aliases From the inception of git, it is the favorite version control system for most of the developers. Git is very flexible to manage the development workflow and collaborate with other
git How to view my current branch in git If you are usig git branch in your terminal and ended up with a long list branches and struggling to find the active branch ? Here is a quick way to
Technology Git tag operations: How to create, list and delete tags To create a new tag git tag <tag_name> Eg: git tag release-november-29 To list all tags in current repository git tag To delete a tag from local