263:8595f388c1d2 draft default tip
Anton Shestakov <av6@dwimlabs.net>, Tue, 09 May 2023 19:49:48 -0300
dpkg: don't install /etc/alsa/conf.d/99-pipewire-default.conf symlink This file makes ALSA use PipeWire by default, not only as pcm, but also as ctl. There's 50-pipewire.conf that makes PipeWire simply available as an ALSA device, that's fine.

previous change 70:b2ed3aee8024

docs/prompt-session-git.sh

Permissions: -rw-r--r--

Other formats: Feeds:
#!/bin/false
# paste this into an interactive shell
git init -q gitrepo && cd gitrepo
echo 'a' > foo
git add foo
git commit -q -m 'a'
echo 'b' >> foo
git stash -q
git stash pop -q && git commit -q -a -m 'b'
git checkout -q HEAD@{1}
git checkout -q -b secret
echo 's' >> foo && git commit -q -a -m 's'
git merge master
git reset --merge
git merge master --strategy=ours --no-commit