#devops-tools
Read more stories on Hashnode
Articles with this tag
Utility 2: Undo Commits At The Repository Level We can use the option reset to undo commits at Repository Level. Syntax: git reset Let’s consider...
Sometimes, we might make a change to our code that we later decide we don't want to keep. The reset command is a tool in Git that can help us to undo...
Introduction In Git, an alias is a custom command or a shortcut that you can create to make your Git workflow more efficient. You can create an alias...
In Git, a "reference" is a pointer to a commit or branch in the version control system. It allows you to easily navigate and keep track of different...
Introduction The git rm command is used in Git to remove files from the Git repository. It is short for "Git remove." When you use this command, Git...
Introduction "git log" is a command used in the Git version control system to display a detailed list of all the commits that have been made to a...