Git
SOLVED: How to rename file or directory in Git
Rename file or directory is easy with git rm or git mv. It would be best to understand what happens at the tree, blob, and commit objects to determine why the …
10 ways to delete file or directory effortlessly in GIT
Complete solution to delete file or directory from git using multiple commands with practical examples.
Are you using git rm command CORRECTLY?
Git rm is a command to delete unwanted files or folders. Despite its usefulness in cleaning a repository, it is one of the commands that often confuse users. …
git blame explained in layman's terms [Practical Examples]
Git blame is a command to inspect who made a change and when they made it. You can view the details on the terminal or a graphical user interface.
SOLVED: How to save local changes temporarily in GIT
How to use git stash to save local changes temporarily without loosing data. Save, restore or create new branch using the local changes
