Posts

Showing posts from June, 2019

Git - Daily Workflow and Frequently Used Commands

If you use Git as your version control system for your project, you must need to have an basic overview of the most frequently used git commands and git workflow for working with git in an enterprise team project. This post is precisely going to talk about it. Begin a Project/Task -  In most cases, you will be working on an existing remote repository in an enterprise project. you will be asked to clone the remote repository into your local and start working on a new branch.  Before you can do a git clone, you have to -  a. Set up an SSH/HTTP connection between your computer and remote repository (GitHub or Azure Devops) b. Create a directory on your local computer where you want to clone the remote repo.  Here is the command you can use to clone an existing repository -  $ git clone <REMOTE_REPO_URL> Note - this is a one-time activity which you need to do unless you mess up the repository and want to fix it by cloni...