Jake Backer
d3173153ac
Add file-write to Git
...
Co-authored-by: Andrea Cardaci <cyrus.and@gmail.com>
2023-09-02 10:34:45 +02:00
Andrea Cardaci
a49cccf7da
Add missing git shell example
2020-10-03 12:12:30 +02:00
Andrea Cardaci
87a0bb6a9f
Make the new Git shell follow the conventions
2020-10-03 12:03:20 +02:00
PaulSaladin
ef2ebf9d30
Add new sudo git function #Yaml_fix
2020-10-03 12:03:20 +02:00
Roman Mueller
1a5b396744
Add file read to git
2020-10-02 14:50:08 +02:00
Andrea Cardaci
9aa7ec842e
Use the sudo VAR=... syntax instead of using -E
2020-06-10 22:56:05 +02:00
Andrea Cardaci
15b465d937
Add git hooks shell
...
Closes #77 as it provides a working example and a possibly better hook. Thanks
to jivex5k <wgehalo@gmail.com> for the initial proposal.
2019-12-18 14:38:35 +01:00
Tobias
09fdfe5f5d
Adding sub commands sudo for git
2019-10-25 14:19:18 +02:00
Léo Meira Vital
bd1d10bd03
Updating git sudo to not drop capabilities
...
Close #66
2019-07-09 20:55:47 +02:00
Andrea Cardaci
f4a3fc9af3
Add notice about Git sudo capabilities
2019-06-23 17:24:38 +02:00
Syed Umar Arfeen
b8493f916d
Increase the probability that the pager is called by Git
...
`git help config` produces a much longer output, hopefully longer than the
terminal window.
Close #62
2019-06-23 17:17:59 +02:00
Emilio
08f5b33651
Add functions with default pager in git
2019-03-31 11:03:34 +01:00
Emilio Pinna
dd337b5ddf
Adopt new function names
2018-10-05 18:55:38 +01:00
Andrea Cardaci
8eaf595fe6
Make interactive execute whenever possible
...
Here the trick is to restore those file descriptors (0, 1, 2) that have been
redirected (`dup2`) by the parent process.
First we need to determine which one has been redirected, for example by looking
at `ls -l /proc/$$/fd/`. Then we can use `0<&x`, `1>&x` or `2>&x` to restore 0,
1 or 2 respectively, where `x` is any file descriptor number that points to the
TTY.
It may happen that no file descriptor is unchanged, in that case we can use
`tty` to perform the redirection: sh <$(tty) >$(tty) 2>$(tty)
2018-09-07 01:11:06 +02:00
Emilio Pinna
0f422cdd6a
Reorder functions in git, lua, and nc
2018-07-22 15:42:43 +01:00
Emilio Pinna
ef92163d03
Add git
2018-07-22 14:06:54 +01:00