-
When collaborating with other developers using Git, a simple workflow would be something like: 1. Clone entire project into your local machine2. Work on local copy3. Add and commit changes4. Push commits back to remote repo Every time before we start working on our local copy, we would probably want to ensure we have the…
-
When exploring branching in Git, you’ve probably come across the term tracking branch. Or even if you are new to the concept of branching, working with a remote repository should have already exposed you to a tracking branch even if you are not aware. A tracking branch is a local branch with a direct relationship to a remote branch. Many developers just…
