How To Create and Merge Branches with Git
A great feature of Git is the ability to create branches. Branches allow for creating your own snapshot of the master branch in order to add a new feature or create a hotfix without affecting…
git
A great feature of Git is the ability to create branches. Branches allow for creating your own snapshot of the master branch in order to add a new feature or create a hotfix without affecting…
Before I had a basic understanding of how git works, I used to keep my local repo all the time, even after I had pushed changes to the remote repo in GitHub. However, I now…
I created a Python script locally on my laptop to solve a coding challenge. However, after completing the script, I decided I wanted to create a repository in my GitHub account to have it available…
Whether you write scripts in isolation or work with a team, the ability to track version of you scripts is important. You may add code that ends up not working out, and the ability to…
I'm not a developer, but I do enjoy programming and writing scripts. In an effort to be "more official", I've decided I needed to work more with Git and source control. Coming from a more…