Code Churn using Git - Find the files changed between two commits
When we want to know all the changes that happened between two commits, or from date A to Date B. We can get the details by querying the git repository through Terminal. Here is the command for finding all the files changed between two commits. git diff --stat <Commit ID 1> <Commit ID 2> Commit ID 1 is start check in. Commit ID 2 is end check in. The results will show all the files changed between these two commits. Reject local commits and reset the local brnch to the remote/origin/master branch state git fetch origin git reset --hard origin/master Reject local commits and reset the local brnch to the remote/feature branch state git fetch origin git reset --hard origin/feature/STORY-###-BranchName Creating stash from one Branch and applying to another branch Make change on Branch 1, Stash it from Branch 1. Now check out Branch 2. Go to terminal and Run git stash pop Code Churn Steps ##Find the commit ids for periods git log --since="20...