Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

how to extract delta changes while comparing two version

raghu August 2, 2021

We create new version/branch for each sprint in Bitbucket, while doing we compare current and older version to to see what all changed files are there,

Is there a way we can extract this comparison results along with files and folder structure to local respo?

1 answer

0 votes
Mark C
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 26, 2021

Hi @raghu

Welcome to the community.

Allow me to suggest some options you can consider:

  1. You can compare the 2 branches locally by running the below command:
    git diff --stat branch1...branch2
    
  2. Optionally, you can save the result by appending >> result.txt in the Git diff command.
    git diff --stat dev...remaster >> result.txt
    
  3. You can explore Bitbucket Pipelines (if you haven't used it) to automate it for you. The idea is to run a Pipelines build by comparing those 2 branches using the same command and optionally save the result somewhere.

Hope it helps and let me know if you have further questions that I can help with.

Regards,
Mark C

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events