Secure shell (SSH) is a networking communication to remote login to a server or raspberry pi over a network. This allows us to login and manage files and applications remote from our primary working computer.
ssh <username>@<hostname>
For a default raspberry pi out of the box, this will usually be:
ssh [email protected]
To logout from the remote computer and end the session, type logout
into the CLI.
logout
You can setup VS Code to create a remote connection via SSH and then code and develop using the IDE on your raspberry pi. I find this method to be very convenient, as you get to use your native computer with all of your native tools and applications handy without having to jump on an entirely different computer where you may not have access to your note taking applications, email, etc.
CMD + SHIFT + P
= Command PaletteThere is also a tiny icon in the bottom-left corner of VS Code that you can click to automatically bring this menu up for future reference. It will also provide a status icon if you are currently logged into to a remote host.