Nahidnahidislam.hashnode.dev·Sep 16, 2024SUDO and SSHA sudo concept in Linux and the purpose of SSH: Sudo (superuser do): Sudo is a program for Linux-based systems that allows specific users to use particular system commands at the root level of the system. When you use the’sudo’ command, you temporari...sudo
Ahini Royahiniroy.hashnode.dev·Aug 22, 2024Get Your GitHub On – The Easy Way!Day 13 - Connecting GitHub to Your Local Machine with PAT and SSH Introduction So, you've started your coding journey and are ready to collaborate on projects, share your work, or just keep your code organized on GitHub. But how do you connect your l...105 reads90DaysOfDevOpsDevops
Muzammil Jan90days.hashnode.dev·Aug 13, 2024Git Essentials with SSH: Branches, Revert, Reset, and MergeWhat is a Branch? A branch in Git is essentially a pointer to a specific commit in the history of your project. It allows you to diverge from the main line of development and work on new features, bug fixes, or other changes independently. Git Revert...Git
Ashim Rudra Paulcodewithashim.hashnode.dev·Jul 14, 2024How to Easily Control Multiple GitHub Accounts with SSHManaging multiple GitHub accounts on one device can be streamlined by using SSH keys. This guide provides step-by-step instructions to set up and switch between multiple GitHub accounts using SSH on any device. Step 1: Generate SSH Keys for Each GitH...2 likes·29 readsManage Multiple GitHub Accounts Using SSH
Vrushali Kudandevrushalikudande.hashnode.dev·Jun 12, 2024Easy Guide To Integrate Local Git with GitHubDo you want to push your local Git repository on the GitHub? Or do you want to pull changes in the remote repository (GitHub) to local repository ? To do so, we need connection btw the local Git and the GitHub. Quick Recap : Git is a distributed ver...13 likes·26 readsUnraveling Ubuntu : Troubleshooting SolutionsGit
Sprasad Pujarisprasad.hashnode.dev·May 16, 2024🔐SSH Troubleshooting 101: Your Path to Secure Remote Connectivity 🔐SSH (Secure Shell) is a widely used protocol for secure remote access to servers and systems. However, sometimes we may encounter issues while trying to establish an SSH connection. Here's a comprehensive guide to help you troubleshoot common SSH pro...1 likeAWS SSH
cgmacodercgmacoder.hashnode.dev·Mar 18, 2024Setup Multiple Git Accounts On local SystemTo activate your SSH key for use with a remote Git repository, you typically need to perform the following steps:(Here i am explaining with 2 example emails) Generate SSH Key Pair: If you haven't already done so, generate an SSH key pair on your loc...30 readsGitHub
Natasha Sharmanssharma.hashnode.dev·Mar 3, 2024Creating Your First GitHub Repository with SSH Authentication 🐱🔐Set up Git and GitHub Install Git 🚀 First things first, you need Git on your machine: Windows: Download the Git installer from the official Git website and follow the installation prompts. Linux: Use your distribution's package manager with sudo a...2 likesDevOpsbeginnersguide
Temitayo Daisi-Osothe-astral-programmer0.hashnode.dev·Feb 19, 2024Cloning a Repository via SSH Authentication: Unveiling the Secure GatewayIntroduction In the realm of secure code management, the process of cloning a repository stands as a pivotal step. GitHub offers two primary avenues for cloning: via HTTPS and via SSH. In this guide, we'll delve into the latter, exploring the intrica...theAstralProgrammer0
ochairo's memoochairo.hashnode.dev·Feb 2, 2024SSH Key Management for GitHub and Azure DevOpsA Step-by-Step Guide Create SSH Directory mkdir -p ~/.ssh/github mkdir -p ~/.ssh/devops Create SSH Keys SSH Key for GitHub ssh-keygen -t rsa -b 4096 -f ~/.ssh/github/${yourAccountName}/id_rsa -C "${yourEmail}" SSH Key for Azure DevOps ssh-keygen -t...42 readsssh