GitXplorerGitXplorer
o

dotfiles

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
e9245592b406eac6efe4f656d385de225e0dcfb6

Ask for next steps in `ga`

oomailson committed 3 years ago
Unverified
3e7cf4d0c20c2ee24c3860f672fddb437c60d5e1

Fix `gamend`

oomailson committed 3 years ago
Unverified
83146ed2a3bbfd9e3e84df122ebe788cad102aa7

Add "EDIT" option to `ga`

oomailson committed 3 years ago
Unverified
268f21571613d9a3282bd6a14eba811ddc368be6

Push TODOs

oomailson committed 4 years ago
Unverified
b15ee5f634515f5b481dd79d011a3e3082788413

Add monorepo environment

oomailson committed 4 years ago
Unverified
bd08f1178157f8f1a00a85b30c6a3ade84404560

Small updates

oomailson committed 4 years ago

README

The README file for this repository.

dotfiles

This is intended for personal use only. Use at your own risk.

Commands

runcached

Cache long running commands

runcached -- a_long_running_command with some args # first time: long running
runcached -- a_long_running_command with some args # cached: fast

runcached -- a_long_running_command changing the arguments # counts as another command: long running
MY_ENVVAR="something" runcached -- a_long_running_command with some args # this counts as another command as well

# Cache stays for up to RUNCACHED_MAX_AGE seconds
runcached -- a_long_running_command with some args # cached: fast
runcached -- a_long_running_command changing the arguments # cached: fast

# Pipes are not counted
runcached -- a_long_running_command with some args | fast_running_pipe # it will use a_long_running_command cached response, but it will not cache fast_running_pipe