We'll go over how to set up a git local repository after installing git-bash or Git on your laptop or desktop in this tutorial. If you're new to Git and need help installing it, Go Here . It will redirect you to the …
Earlier I have explained how to configure Jenkins on Amazon Ec2 Instance & in this post we'll learn how to install Git on Amazon Ec2 instance. For that what you have to do is follow my instructions carefully. Prerequisit…
GitHub Personal Access Token GitHub is a web-based platform for managing and collaborating on code projects for software engineers . It makes it easier for people and teams to collaborate by providing tools for version contro…
Git Branching Strategies: What are the branches you've used, and what are they for? When we establish a repository, it creates a default branch called master. If you're new to Git, check out these resources to learn the…
SSH key Generation For AWS Ec2: #ssh-keygen keep pressing enter until generating. Read: Video tour will help you on that ? #ls -la ~/.ssh cat ~/.ssh/id_rsa.pub -->copy that code take id_rsa.pub key & git lo…
Git Commands: Summary: git cherry-pick git clone git fetch git pull #git cherry-pick once you create a repo it's going to create a branch also. default branch is master and we created another branch called csrdev. …
Git Tags : While creating a tag you have to follow naming conventions for best practices. Note: Tags are going to create master branch only not the default branch. We are going to deploy the code to production from …
Git Branch-Tips To Learn: Summary: create list rename delete #git branch It will display local repository branches laptop/desktop. we can create the branch we can delete the branch #git ch…