mox@lemmy.sdf.org to Programming@programming.dev · 3 months ago"GitHub" Is Starting to Feel Like Legacy Softwarewww.mistys-internet.websiteexternal-linkmessage-square86fedilinkarrow-up1128arrow-down134file-textcross-posted to: opensource@lemmy.mlhackernews@lemmy.smeargle.fans
arrow-up194arrow-down1external-link"GitHub" Is Starting to Feel Like Legacy Softwarewww.mistys-internet.websitemox@lemmy.sdf.org to Programming@programming.dev · 3 months agomessage-square86fedilinkfile-textcross-posted to: opensource@lemmy.mlhackernews@lemmy.smeargle.fans
minus-squarefmstrat@lemmy.nowsci.comlinkfedilinkEnglisharrow-up5·3 months agoI am about to make you very happy. alias gl='git log --graph --abbrev-commit --no-decorate --date=format:'\''%Y-%m-%d %H:%M:%S'\'' --format=format:'\''%C(8)%>|(16)%h %C(7)%ad %C(8)%<(16,trunc)%an %C(auto)%d %>|(1)%s'\'' --all'
minus-squarespartanatreyu@programming.devlinkfedilinkarrow-up2·3 months agoI use git log --graph --all --remotes --oneline whenever I need to shell into another computer, but it’s still too barebones for regular use.
minus-squareAndromxda 🇺🇦🇵🇸🇹🇼@lemmy.dbzer0.comlinkfedilinkEnglisharrow-up1·2 months agoFor my fellow fish shell users: git log --graph --abbrev-commit --no-decorate --date=format:'%Y-%m-%d %H:%M:%S' --format=format:'%C(8)%>|(16)%h %C(7)%ad %C(8)%<(16,trunc)%an %C(auto)%d %>|(1)%s' --all
I am about to make you very happy.
alias gl='git log --graph --abbrev-commit --no-decorate --date=format:'\''%Y-%m-%d %H:%M:%S'\'' --format=format:'\''%C(8)%>|(16)%h %C(7)%ad %C(8)%<(16,trunc)%an %C(auto)%d %>|(1)%s'\'' --all'
I use
git log --graph --all --remotes --oneline
whenever I need to shell into another computer, but it’s still too barebones for regular use.For my fellow fish shell users:
git log --graph --abbrev-commit --no-decorate --date=format:'%Y-%m-%d %H:%M:%S' --format=format:'%C(8)%>|(16)%h %C(7)%ad %C(8)%<(16,trunc)%an %C(auto)%d %>|(1)%s' --all