Home Explore Blog CI



nushell

11th chunk of `cookbook/parsing_git_log.md`
5464fae6eb9d854de2fef30c181c094a5737122a22715e2b00000001000013b0
# =>  24 │ 0c3ea636 │ Add support for stderr   │ Sophia                │ 547158+sophiajt@users.nor │ 4 days ago
# =>     │          │ and exit code (#4647)    │                   │ eply.github.com         │
# => ────┴──────────┴──────────────────────────┴───────────────────┴─────────────────────────┴──────────────
# => ...
```

Or even show me all the commits in the last 7 days.

```nu
git log --pretty=%h»¦«%s»¦«%aN»¦«%aE»¦«%aD -n 25 | lines | split column "»¦«" commit subject name email date | upsert date {|d| $d.date | into datetime} | where ($it.date > ((date now) - 7day))
# => ────┬──────────┬──────────────────────────┬───────────────────┬───────────────────────────┬──────────────
# =>  #  │  commit  │         subject          │       name        │          email            │     date
# => ────┼──────────┼──────────────────────────┼───────────────────┼───────────────────────────┼──────────────
# =>   0 │ 42f1874a │ Update some examples     │ Justin Ma         │ hustcer@outlook.com       │ 7 hours ago
# =>     │          │ and docs (#4682)         │                   │                           │
# =>   1 │ 2a89936b │ Move to latest stable    │ Sophia            │ 547158+sophiajt@users.nor │ 8 hours ago
# =>     │          │ crossterm, with fix      │                   │ eply.github.com           │
# =>     │          │ (#4684)                  │                   │                           │
# =>   2 │ ece5e7db │ dataframe list command   │ Fernando Herrera  │ fernando.j.herrera@gmai   │ 8 hours ago
# =>     │          │ (#4681)                  │                   │ l.com                     │
# =>   3 │ a6a96b29 │ Add binary literals      │ Sophia            │ 547158+sophiajt@users.nor │ 21 hours ago
# =>     │          │ (#4680)                  │                   │ eply.github.com           │
# =>   4 │ e3100e6a │ Fix alias in             │ Luca Trevisani    │ lucatrv@hotmail.com       │ a day ago
# =>     │          │ `docs/sample_config/con  │                   │                           │
# =>     │          │ fig.toml`                │                   │                           │
# =>     │          │ (#4669)                  │                   │                           │
# =>   5 │ cb5c61d2 │ Fix open ended ranges    │ Sophia            │ 547158+sophiajt@users.nor │ a day ago
# =>     │          │ (#4677)                  │                   │ eply.github.com           │
# =>   6 │ b09acdb7 │ Fix unsupported type     │ Justin Ma         │ hustcer@outlook.com       │ a day ago
# =>     │          │ message for some math    │                   │                           │
# =>     │          │ related commands (#4672) │                   │                           │
# =>   7 │ 0924975b │ Use default_config.nu    │ Sophia            │ 547158+sophiajt@users.nor │ a day ago
# =>     │          │ by default (#4675)       │                   │ eply.github.com           │
# =>   8 │ d6a6c4b0 │ Add back in default      │ Sophia            │ 547158+sophiajt@users.nor │ a day ago
# =>     │          │ keybindings (#4673)      │                   │ eply.github.com           │
# =>   9 │ eec17304 │ Add profiling build      │ Stefan Holderbach │ sholderbach@users.norep   │ a day ago
# =>     │          │ profile and symbol strip │                   │ ly.github.com             │
# =>     │          │ (#4630)                  │                   │                           │
# =>  10 │ 10364c4f │ don't use table          │ Sophia            │ 547158+sophiajt@users.nor │ a day ago
# =>     │          │ compaction in to nuon if │                   │ eply.github.com           │
# =>     │          │ not a table (#4671)      │                   │                           │
# =>  11 │ ef70c8db │ Date parse refactor      │ Jonathan Moore    │ jtm170330@utdallas.edu    │ 2 days ago
# =>     │          │ (#4661)                  │                   │                           │
# =>  12 │ 0f437589 │ add last exit code to    │ Darren Schroeder  │ 343840+fdncred@users.no   │ 2 days ago

Title: Recent Nushell Git Commits
Summary
A list of recent commits to the Nushell project, showing commit hash, subject, author name, author email, and date. The commits include updates to examples and documentation, fixes for crossterm, dataframe list commands, binary literals, alias fixes, open-ended ranges, math command error messages, default configurations, keybindings, profiling builds, table compaction, date parsing, and exit codes.