Git (contd)
ignoring files and folders
- git ignore official docs
-
Delete untracked files from working tree
git clean -fd <path> - Git restore command
- –staged: this will move the changes from staging area to working tree
- restores the modified file back to its state in working tree

Git HEAD movements
-
We have two expressions
- HEAD~n: take n steps back
- HEAD^: go to the parent
- Explain difference between git reset hard, soft and mixed ?
Cherry pick
- reference for cherry pick
rebase
- Refer Here for official docs
