Distributed Version Control
How To Add Multiple SSH Keys Hello Everyone Welcome to CloudAffaire and this is Debjeet. With the increase use of git-based version control systems like GitHub or GitLab, its quite evident that you may require multiple ssh keys to maintain different git repository for different accounts. In this blog post, we will discuss how to add multiple SSH keys in Windows or Linux system for multiple GitHub account. The example given in this blog…
Git commands cheat sheet: Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed git remote repository. https://cloudaffaire.com/git-remote-repository/ We are almost done with our introductory series on Git. In this blog post, we will list all the commands that have been used so far in this series. Git commands cheat sheet: [crayon-65681d3ce14bb174702410/] To get more details on git, please refer below git documentation https://git-scm.com/doc
Git remote repository Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed how to rewrite git history. https://cloudaffaire.com/git-rewrite-history/ In this blog post, we will discuss git remote repository. We will use GitHub as our remote repository in this demo. Git remote repository: Demo: Create a GitHub account and login to your GitHub account. Create a repository in your GitHub account. Copy your remote repository https link…
Git rewrite history Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed how to branch and rebase in git repository. https://cloudaffaire.com/git-branching-and-rebasing/ In this blog post, we will discuss how to rewrite git history. Git rewrite history: Demo: [crayon-65681d3ce18a5781824941/] Hope you have enjoyed this article. In the next blog post, we will discuss git remote repository. To get more details on git, please refer below git documentation…
Git branching and rebasing Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed how to branch and merge in git repository. https://cloudaffaire.com/git-branching-and-merging/ In this blog post, we will discuss branching and rebasing in git. Git branching and rebasing: What is git rebase? In Git, there are two main ways to integrate changes from one branch into another, merge and the rebase. We have already covered git…
Git Branching And Merging Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed different rollback scenarios in a git repository through a demo. https://cloudaffaire.com/undo-changes-in-git-local-repository/ In this blog post, we will discuss how to branch and merge in git repository. Git Branching And Merging: Branching: Nearly every VCS has some form of branching support. Branching means you diverge from the main line of development and continue to do…
Undo changes in git local repository Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed different areas of a git repository through a demo. https://cloudaffaire.com/git-repository-basic-concepts/ In this blog post, we will discuss how to roll back changes in git repository. Undo changes in git local repository: Demo: [crayon-65681d3ce2011217571962/] Hope you have enjoyed this article. In the next blog post, we will discuss git branching. To get…
Git local repository basic concepts Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have installed Git and created our 1st local repository using git init command. https://cloudaffaire.com/how-to-install-git-in-aws-ec2-instance/ In this blog post, we will discuss some basic concepts of git local repository with examples. Git local repository basic concepts: Git local repository can be divided into three areas, working tree, staging area (also known as index) and…
How to install Git in AWS EC2 Hello Everyone Welcome to CloudAffaire and this is Debjeet. In this series, we will explore one of the most popular distributed version controlling tool Git. In this demo, we will install Git in AWS EC2 instance and setup our 1st local Git repository. What is Git? Git is a fast, scalable, revision control system with an unusually rich command set that provides both high-level operations and full…