0

I know that there are gulp plugins for executing commands within tasks. What I want to do is run Gulp and while it watching files, I can switch my git branch without having to open a new terminal tab, execute the command there, and then switch back.

Ian Walter
  • 882
  • 2
  • 8
  • 23

1 Answers1

0

You could use the following command to run Gulp in background mode and redirect all output to /dev/null

nohup gulp > /dev/null &
Preview
  • 35,317
  • 10
  • 92
  • 112