Operations | Monitoring | ITSM | DevOps | Cloud

5 Advanced Tips for How to Use GitLens in VS Code

GitLens is a Git extension that integrates seamlessly with Visual Studio Code. In fact, with over 14 million installs, it’s one of the most popular Git extensions on the VS Code Marketplace. GitLens earned its popularity because of its ability to unlock valuable authorship information, helping users navigate a project’s revision history, and much more.

Intro to the CLI Part 4: Customizing Your CLI Shell

So far in this series, you have learned why it’s important to understand how to use the command line, some command line basics and shell commands, and all about running CLI-based applications and command line tools. In this part of our CLI intro series, you are going to learn the basics of customizing your shell user experience. In this part of the CLI intro series, we’re going to focus on.

Embedding Git Commit Information in Go Binaries

It is always helpful to know which version you are running of some software, even more so when running development versions. So it’s good if software is able to tell you its version, for example by calling it with --version. For release versions, maintaining this information by hand is feasible, but in order for development versions to show exact revision information, you need some automation, otherwise updating it will be forgotten, leaving you with wrong information.

GitKraken Client v8.5 Release: Azure DevOps Workspace Support

Working as a team is critical to any mission, whether you’re taking on a galactic empire or pushing your code through your DevOps pipelines. Helping more teams, of all shapes and sizes, work effectively is why we have added support for Azure DevOps repositories in GitKraken Workspaces. We think you will agree, the force is strong with GitKraken Client v8.5 and Azure DevOps Workspaces!

Git Integration for Jira Data Center Release: Automation for Jira

Git Integration for Jira Data Center has seen some major updates in the last quarter, including new Automation for Jira support: giving you more control and power over repository trigger actions. Let’s dive into the new features and improvements for Git Integration for Jira Data Center.

11 Tips for Using GitLens in VS Code

GitLens is the number one Git extension for VS Code, helping over 14 million developers unlock the power of Git in their favorite editor! Here are 11 expert tips on how to make the most of using GitLens right now! Optimize your Git experience with VS Code today – install GitLens to enjoy better project history visualization and insights! Install GitLens Free!

Setting up continuous integration with CircleCI and GitHub

Continuous integration (CI) involves the test automation of feature branches before they are merged to the main Git branch in a project. This ensures that a codebase does not get updated with changes that could break something. Continuous delivery (CD), on the other hand, builds upon CI by automating releases of these branches or the main branch. This allows small incremental updates that reach your users faster, in line with Agile software development philosophy.