Front-end Developer Tools

Front-end Developer Tools

Multiple SSH keys configuration for GitHub and GitLab accounts

If you have multiple GitLab or GitHub accounts (for example, a personal account and a company account) and each of them uses a different SSH key (which is a good practice), you can define a separate authentication configuration for each account. This allows your development environment to automatically determine which SSH key should be used […]

Read more

Login to server using SSH key

To log in to a server using an SSH key, you first need an SSH key pair. You can learn how to generate SSH keys in the following article: You can log in using the ssh command by providing the username and the host name in the following format: ssh [email protected] SSH login with private […]

Read more

Generate SSH keys in Windows

What is ssh key? SSH (Secure Shell) uses asymmetric cryptography, a mechanism based on two related keys: a public key and a private key.Each of them has a specific role: When connecting to a server using SSH: Thanks to this process, SSH authentication is significantly more secure than traditional password-based login: In practice, this means […]

Read more

Generate SSH keys on Linux or Mac

What is SSH? SSH (Secure Shell) is a network protocol that allows you to securely connect to a remote server and execute commands on it. Authentication can be done in several ways: using a username and password, SSH keys, or an additional token (for example, when using two-factor authentication). SSH Keys SSH keys are one […]

Read more
git-logo

Basic git commands

You can perform git commands for example in: – cmd console (widnows start -> cmd. It should oppened Command Prompt app. To go to the root directory, enter cd \ . Next enter cd + path to directory with your project, e.g. cd Users\ Joanna\Desktop\my-project – git bash console, which you can get from https://git-scm.com/downloads […]

Read more