I'm trying that git push
don't show the output.
I try with --quiet
option and redirection to /dev/null
like that:
git push origin master &>/dev/null
But Git still shows all files of the repo when a make a push like that:
Username for 'https://github.com': n0zg
Password for 'https://n0zg@github.com':
test.html
888.html
9991.html
999.html
index.html
css/
css/stylesheet.css
highlight/
highlight/README.md
highlight/LICENSE
highlight/CHANGES.md
highlight/README.ru.md
highlight/styles/
highlight/styles/ir-black.css
....
How can I make that git push
don't show all files in the repo on the terminal?