Ask Your Question
1

What is the method for tallying the frequency of pushes to a branch in Git?

asked 2023-07-16 08:26:18 +0000

djk gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-07-16 08:44:01 +0000

bukephalos gravatar image

One method for tallying the frequency of pushes to a branch in Git is to use the following command:

git rev-list --count --left-right branch1...branch2

This command shows the number of commits that are unique to each branch and the total number of commits shared between both branches. The total number of commits unique to one branch is the frequency of pushes to that branch.

Another method is to use a Git hook that runs on each push to the repository and logs the data to a separate file or database. This method allows for more precise tracking and reporting of push frequency over time.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-07-16 08:26:18 +0000

Seen: 26 times

Last updated: Jul 16 '23