OMochairo's memoinochairo.hashnode.dev·Feb 21, 2024 · 1 min readSigning GitHub Commits with SSH KeysA How-To Guide Overview These are practical steps to sign commits in GitHub using SSH keys. Create directory mkdir ~/.ssh mkdir ~/.ssh/github Generate SSH key ssh-keygen -t rsa -b 4096 -f ~/.ssh/github/{yourGithubAccountName}/id_rsa -C "{yourEmailAd...00
OMochairo's memoinochairo.hashnode.dev·Feb 6, 2024 · 2 min readThe Culture of Code RefactoringThe Importance of Agile Development and Code Refactoring In software development, the quest for "good code" is ever-evolving, shaped by project priorities, team dynamics, and the evolving landscape of programming languages, frameworks, and libraries....00
OMochairo's memoinochairo.hashnode.dev·Feb 2, 2024 · 2 min readFeature Branches with with AliasesA Guide to Creating and Using Aliases in Git Working with Git often involves typing out lengthy commands, which can be cumbersome and time-consuming. Fortunately, Git allows you to create aliases for frequently used commands, making your workflow mor...00
OMochairo's memoinochairo.hashnode.dev·Feb 2, 2024 · 1 min readSSH 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...00