LeoAnesi / dev-tips

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dev-tips

Generals

  • Enable git rerere to not have to handle same conflicts multiple time : git config --global rerere.enabled true
  • Update dependencies easily with yarn upgrade-interactive --latest
  • Activate alias + completion for kubernetes in zsh: install kubectl plugin in ~/.zshrc
  • Stack overflow discussion to help you create automatically your tmux workspace here
  • Push by default to your current branch: git config --global push.default current
  • Git by default is not case sensitive, so changing file name Hello.ts to hello.ts will not trigger any change, to avoid that change git config with : git config core.ignorecase false
  • Dig disk usage du -a {directory} -cBM --max-depth=1 2>/dev/null | sort -n
  • Postman crash issue

About