warp terminal - Offirmo-team/wiki GitHub Wiki

⬇️ Download

Réglages

Appearance

  • Input
    • bottom (warp mode)
  • Prompt
    • remove user@machine
  • Blocks
    • compact mode
  • text
    • Fira code 12 1.1

Features

  • General
    • recommend AI prompts on tab (conflict??)
    • show changelog after update
  • Editor
    • Tab key behavior -> Accept autosuggestion
  • Notifications
    • all

Drive

https://app.warp.dev/drive/folder/Generic-cw0zqPnemkZkKotymQshJ3

Generic
  delete last commit
    git reset --hard HEAD^
  git -- checkout branch from origin
    git fetch origin {{argument_1}}:{{argument_1}} --prune --prune-tags && git checkout {{argument_1}}
  git -- DESTRUCTIVE cleanup any non-git files
    kng
    rm -rf node_modules node_modules_bak \
       .npm npm-debug.log \
       yarn-error.log yarn/.cache \
       build \
       .parcel .parcel-*
    git clean -ffdx
  git -- stash
    git stash list && git stash save --include-untracked "WIP"
  go main & refresh
    git switch {{argument_1}}
    git pull origin {{argument_1}}