in Education by
I can do following: git diff tag1 tag2 --stat But this gives me list of files.. How can I know all users who have worked between these two tags ! JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
A first approach could use git log: In the git repo itself: git log v2.9.0..v2.9.3 --name-only --format="%aN <%aE>" --reverse git log .. --name-only --format="%aN <%aE>" --reverse ^^ |_ don't forget the two dots. (On the git dots syntax, see "What are the differences between double-dot “..” and triple-dot “…” in Git commit ranges?") That gives: Eric Wong daemon.c Edward Thomson pretty.c t/t6006-rev-list-format.sh David Kastrup builtin/blame.c René Scharfe t/t4051-diff-function-context.sh t/t4051/appended1.c t/t4051/appended2.c t/t4051/dummy.c t/t4051/hello.c t/t4051/includes.c .... And to get just the list of unique contributors: git log v2.9.0..v2.9.3 --format="%aN <%aE>" --reverse|sort|uniq That returns: Alex Henrie Alfred Perlstein Andreas Brauchli Andrew Oakley Armin Kunaschik Charles Bailey Charles Bailey Chris Packham Dave Nicolson ...

Related questions

0 votes
    I have 2 repositories. Let say them repo_a and repo_b. I imported repo_a in repo_b When I ran go ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 23, 2022 in Education by JackTerrance
0 votes
    What is the difference between the ‘git diff ’and ‘git status’?...
asked Nov 2, 2020 in Technology by JackTerrance
0 votes
    When I use svn diff or git diff it shows lines like: @@ -1,5 +1,9 @@ What do they mean ... questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 12, 2022 in Education by JackTerrance
0 votes
    When I use svn diff or git diff it shows lines like: @@ -1,5 +1,9 @@ What do they mean ... questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 7, 2022 in Education by JackTerrance
0 votes
    When I use svn diff or git diff it shows lines like: @@ -1,5 +1,9 @@ What do they mean ... questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 5, 2022 in Education by JackTerrance
0 votes
    What is git diff command? How is it different from git status?...
asked Nov 4, 2020 in Technology by JackTerrance
0 votes
    Securing a database application with username/password access control should be considered sufficient: Please select the ... have administrative access (d)To secure the application...
asked Dec 11, 2020 in Education by Editorial Staff
0 votes
    _________________ shows relationship between diff members of a family. a. Family tree b. Generations c. Uncle d. Aunt...
asked May 14, 2021 in General by JackTerrance
0 votes
    How can we see the differences between the two branches in Git?...
asked Jan 8, 2021 in Technology by JackTerrance
0 votes
    First, How can I set min_length for username? ChachaUser._meta.get_field('username').min_length = 2 doesn't ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 6, 2022 in Education by JackTerrance
0 votes
    In my application when the current logged in user's usernam is changed i want to update the UserDetails ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 22, 2022 in Education by JackTerrance
0 votes
    I recently moved my website to a shared hosting solution at asmallorange.com, but I had to set my ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 21, 2022 in Education by JackTerrance
0 votes
    I recently moved my website to a shared hosting solution at asmallorange.com, but I had to set my ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 20, 2022 in Education by JackTerrance
0 votes
    I recently moved my website to a shared hosting solution at asmallorange.com, but I had to set my ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 20, 2022 in Education by JackTerrance
0 votes
    I have a confusion that can we pass username and password in login form in any website through command ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 2, 2022 in Education by JackTerrance
...