github Commands

Introduction to Git features and commands.

Reading Time: 4 minutes Hi everyone, in this blog “Introduction to git features and commands ” we’ll learn about some important git commands which we use in our daily working life, and without using these commands we won’t be able to work with the team on same code base in parallel. What is Git? Generally Git is the most widely used version control system these days in the world. Continue Reading

How To Resolve Merge Conflicts In Git Pull Request (PR)?

Reading Time: 2 minutes “How to resolve merge conflicts in Git pull request or a PR?” This question we often ask our friends and colleagues and even Google. It can also look complex and confusing especially if you are new to Git. To resolve your queries, we will talk about it in this article and cover some important questions like “What is a merge conflict?”, “When does a merge Continue Reading

Quick overview to GIT branch and merge

Reading Time: 2 minutes Hi Readers, In this blog we will be looking about few important GIT commands that becomes very handy in our day to day development routine. These commands are very useful when you want to contribute to some one’s or you own repository by applying your ideas into the code base. Let’s discuss few git commands Cloning a repository git clone <repo-url> Create and switch to Continue Reading

Implementation of Worktree feature in Git

Reading Time: 2 minutes What is worktree The worktree feature is used to manage multiple working trees. Implementation of worktree feature provide us to checkout multiple branches at the same time. Worktree gives a extra working copy of the repository. The new worktree is also known as Linked working tree. The worktree is not only for the branches, but with the help of worktree we can check out tags Continue Reading

Features Of Git Fetch And Git Pull command

Reading Time: 3 minutes Git Fetch command Git fetch command works on the local repository where it only fetches the data from the remote repository to have a look what all the changes has been done by the developers or what all new commits are made by them. So that it updates the developer to work. But, it doesn’t makes a copy of the work instead it allows the Continue Reading

Git Tagging

Reading Time: 3 minutes Hi folks! In this blog, we will try to learn about the tagging that we use in git. Git is a distributed version control system for tracking changes in any set of files. This was originally designed for coordinating work among programmers cooperating on source code during software development. Going forward with this blog we will try to learn how to list existing tags, how Continue Reading

Cheat Sheet – Git

Reading Time: 5 minutes Hello everyone, in this blog I’m going to discuss different git commands. I hope this Cheat Sheet – Git will be helpful to you and will clear some doubts if you have regarding any command. So, let’s begin! Installing Git To start, first, we need to install git. Following are the simple commands to do that: Configure After installing git you have to configure user Continue Reading

SBT and Github commands using Linux Cronjob for github project

Reading Time: 3 minutes When i was in the middle of my project I encountered a challenge to run SBT and Github commands for my cloned project at regular intervals(say after every hour or two). When I looked up to the problem it seemed a bit challenging until I did not bump into Linux Cronjob(A time based job scheduler ). Alright, for those who do not know about Cronjobs. Continue Reading