Logo TheBeArsenal

Git | Technical Handbook

List all changed files in Git.

Solution
git diff --name-only


How to checkout from remote tag in Git?

Solution
Use command - 'git checkout tags/ -b '


Set git username and email in terminal

Solution
1. git config --global user.name "Name"
2.git config --global user.email "email@domain.com"