Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)OZ
ozr @programming.dev
Posts 0
Comments 3
What's your opinion on git rebase vs git merge?
  • When "merging" in master/main before opening a pull request I always rebase any local commits I have, it does no harm but vastly reduces complexity of the commit tree - however, as soon as code from other branches enters the picture I merge

  • Running Commands in Parallel in Linux
  • Good post! It's also good to mention wait can be used with & (useful for scripts)

    Example: command_1 & command_2 & command_3 & wait will make the shell wait until the last command finishes.