In this tutorial, we see how to update Nodejs & node package manager (npm) on our Raspberry Pi. To start, open the terminal on your Raspberry Pi. First we will get the latest system’s package list onto the Raspberry Pi using the following command: sudo apt update the we will install the latest packages available […]
In this tutorial, we will see how to use the rm, unlink, and rmdir commands to remove files and directories in Linus using Terminal (command line). Remove Files: To remove (or delete) a file on Linux using the command line, use either rm (remove) or unlink command. unlink command allows you to remove only a single file. rm command allows you to remove multiple files […]
Open up an Administrative level Command Prompt and run tasklist or netstat -ano | findstr :portNumber to see all of the running processes: C:\Users\Hussain>tasklist C:\Users\Hussain>netstat -ano | findstr :portNumber ( in this case port 3000) C:\Users\Hussain>Taskkill /PID /F Below is the screenshot of the above steps performed.
Follow the below steps: git checkout develop git pull git checkout <your-branch-name> git merge develop The above steps will merge the changes from develop into your branch and probably create a new commit, with a comment making it clear that it’s a merge. There are other ways do to update the local branch, i would say […]