We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Tips for being more productive on the terminal
Use && to execute two commands sequentially where the second command depends on the first one succeeding.
&&
E.g. to commit and then push but push only if commit succeeds:
git commit -m "foo" && git push # only push if commit succeeds
Use Ctrl R to search through terminal history. See this video for more information.
Ctrl
R