This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function composer --description 'Run Composer via Docker container' | |
docker run --rm -it -v $SSH_AUTH_SOCK:/ssh-auth.sock -v $PWD:/app -e SSH_AUTH_SOCK=/ssh-auth.sock -u (id -u):(id -g) composer $argv; | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ | |
"caption": "Fixup", | |
"command": "git", | |
"args": {"argv": ["commit", "--fixup", "HEAD"]} | |
}, | |
{ | |
"caption": "Stage All", | |
"command": "git", | |
"args": {"argv": ["add", "."]} |