File
git-brv
Testcases
- If the repository has only one branch and its name is
main, when invoke the git-brv command, the format of the result is {date} {branch_name} {upstream} {branch_short_hash} {commit_title_message} and output is just like 2024-01-05 main origin/main b54d8c7 test(git-browse): add unit tests (#1127)
- If the repository has multiple branches and the names are
feature/2024-01-01, feature/2024-01-02, feature/2024-01-03 and suppose the branches created date are same to the branch name, when invoke the git-brv command, the result is
{date} feature/2024-01-03 {upstream} {branch_short_hash} {commit_title_message}
{date} feature/2024-01-02 {upstream} {branch_short_hash} {commit_title_message}
{date} feature/2024-01-01 {upstream} {branch_short_hash} {commit_title_message}
- Suppose the same as 2 and invoke the
git-brv with --reverse argument, the result is
{date} feature/2024-01-01 {upstream} {branch_short_hash} {commit_title_message}
{date} feature/2024-01-02 {upstream} {branch_short_hash} {commit_title_message}
{date} feature/2024-01-03 {upstream} {branch_short_hash} {commit_title_message}
PS: It is a curious command, but I am more curious about the command name, what is the full name of the git-brv? The brv is not easy to explain the thing done with it.
Reference
File
git-brv
Testcases
main, when invoke thegit-brvcommand, the format of the result is{date} {branch_name} {upstream} {branch_short_hash} {commit_title_message}and output is just like2024-01-05 main origin/main b54d8c7 test(git-browse): add unit tests (#1127)feature/2024-01-01,feature/2024-01-02,feature/2024-01-03and suppose the branches created date are same to the branch name, when invoke thegit-brvcommand, the result isgit-brvwith--reverseargument, the result isPS: It is a curious command, but I am more curious about the command name, what is the full name of the
git-brv? Thebrvis not easy to explain the thing done with it.Reference