T520

Laptop details

August 23, 2023 · 7 min · Alexander Holbreich

Git Cheat Sheet

Git new machine configuation Stating correct identiry: git config --global user.name "Alexander Holbreich" git config --global user.email "alexander@xxxxx.org" git config --global color.ui auto #adds some collorts to standard conosle output Some handy aliases: # ci for commit git config --global alias.ci commit # amend for commit --amend git config --global alias.amend ci --amend Commit history git log --oneline #Show diffs git log -p #Show commit stats (e.g. foo.txt | 1 + 1 file changed, 1 insertion(+) git log --stats #List commit's by author git log --author <name> #Limit by time git log --after 2023-10-20 git log --after 2....

January 20, 2023 · 1 min · Alexander Holbreich

Hardware log

ThinkPad X1 Carbon Gen 9 Name: ThinkPad X1 Carbon Gen 9 Product: 20XW008DGE CPU: quad core 11th Gen Intel Core i7-1165G7 RAM: 15.34 GiB System: Host: fedora.fritz.box Kernel: 5.15.14-200.fc35.x86_64 x86_64 bits: 64 Desktop: GNOME 41.3 Distro: Fedora release 35 (Thirty Five) Machine: Type: Laptop System: LENOVO product: 20XW008DGE v: ThinkPad X1 Carbon Gen 9 serial: <superuser required> Mobo: LENOVO model: 20XW008DGE v: SDK0J40697 WIN serial: <superuser required> UEFI: LENOVO v: N32ET68W (1....

January 20, 2022 · 2 min · Alexander Holbreich

systemd-analyze Startup finished in 8.937s (firmware) + 3.231s (loader) + 1.137s (kernel) + 3.320s (initrd) + 7.747s (userspace) = 24.374s graphical.target reached after 7.728s in userspace. Startup finished in 8.939s (firmware) + 5.345s (loader) + 1.114s (kernel) + 3.221s (initrd) + 7.804s (userspace) = 26.426s graphical.target reached after 7.780s in userspace. Startup finished in 8.935s (firmware) + 1.424s (loader) + 1.104s (kernel) + 3.274s (initrd) + 7.913s (userspace) = 22.652s graphical....

1 min · Alexander Holbreich