Open-source News

AMD To Unveil Next-Gen Server Processors On 10 November

Phoronix - Mon, 10/24/2022 - 22:00
Last week AMD reaffirmed their 3 November announcement for RDNA3 graphics while today the company announced that one week later on 10 November they will be unveiling their next-gen server processors...

Sony Provides Early Linux Support For The PS5 DualSense Edge Controller

Phoronix - Mon, 10/24/2022 - 18:03
Sony recently announced the DualSense Edge wireless controller for the PlayStation 5 as an "ultra-customizable controller". This $199 USD controller isn't even available for sale until the end of January while already Sony has contributed initial support to their "hid-playstation" open-source Linux kernel driver for supporting the DualSense Edge...

Early-Stage Apple Mesa Vulkan Driver Now Runs VKCube Demo

Phoronix - Mon, 10/24/2022 - 17:32
In addition to Alyssa Rosenzweig leading the work on bringing up OpenGL driver support for Apple M1/M2 SoCs with the Mesa "AGX" Gallium3D driver, developer Ella Stanforth has been working on "AGXV" as a Vulkan driver implementation for the Apple Silicon hardware on Linux. As of yesterday, she hit the milestone of being able to run the VKCube demo...

Apple CPUFreq Driver Updated For Linux - Initial M2 Support Added

Phoronix - Mon, 10/24/2022 - 17:06
Asahi Linux lead developer Hector Martin today sent out the third revision to the Apple SoC CPU frequency scaling "CPUFreq" driver that is working its way toward the mainline Linux kernel...

IceWM 3.1 Released For This Fast & Simple X11 Window Manager

Phoronix - Mon, 10/24/2022 - 16:55
Earlier this month marked the release of IceWM 3.0 as this X11 window manager that has been around since the late 90's. IceWM 3.1 is now available with various fixes and minor additions -- including refinements to the tabbed windows support introduced in IceWM 3.0...

FUSE Adding Support For Non-Extending Parallel Direct Writes To The Same File

Phoronix - Mon, 10/24/2022 - 16:22
Queued up in FUSE's "for-next" kernel branch is a patch worked on in recent months for allowing non-extending parallel direct writes to the same file...

How to display commits created on a specific day with the git log command

opensource.com - Mon, 10/24/2022 - 15:00
How to display commits created on a specific day with the git log command Agil Antony Mon, 10/24/2022 - 03:00

The git log command offers many opportunities to learn more about the commits made by contributors. One way you might consume such information is by date. To view commits in a Git repository created on a specific date or range of dates, use the git log command with the options --since or --until, or both.

More on Git What is Git? Git cheat sheet Markdown cheat sheet New Git articles

First, checkout the branch you want to inspect (for example, main):

$ git checkout main

Next, display the commits for the current date (today):

$ git log --oneline --since="yesterday"

Display commits for the current date by a specific author only (for example, Agil):

$ git log --oneline --since="yesterday" --author="Agil"

You can also display results for a range of dates. Display commits between any two dates (for example, 22 April 2022 and 24 April 2022):

$ git log --oneline --since="2022-04-22" --until="2022-04-24"

In this example, the output displays all the commits between 22 April 2022 and 24 April 2022, which excludes the commits done on 22 April 2022. If you want to include the commits done on 22 April 2022, replace 2022-04-22 with 2022-04-21.

Run the following command to display commits between any two dates by a specific author only (for example, Agil):

$ git log --oneline --since="2022-04-22" \
--until="2022-04-24" --author="Agil"Reporting

Git has many advantages, and one of them is the way it enables you to gather data about your project. The git log command is an important reporting tool and yet another reason to use Git!

The git log command is an important reporting tool and yet another reason to use Git.

Image by:

by Dafne Cholet. CC BY-SA 2.0.

 

Git What to read next This work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License. Register or Login to post a comment.

Pages