How to Install Jenkins on UbuntuIntroduction Jenkins is a CI/CD software platform that supports continuous integration (CI) and continuous delivery (CD). It’s used to automate software testing, building, delivery, and deployment. Using Jenkins on Ubuntu creates a powerful managemen...Apr 19, 2023·4 min read
Difference between SVN & GITSubversion (SVN) and Git are both popular version control systems used to manage source code and track changes. Here are some key differences between SVN and Git: Distributed vs. Centralized: Git is a distributed version control system, which means ...Apr 1, 2023·2 min read
Git cheat sheet with some common Git commands:Configuration git config --global user.name "Your Name" - Set your name for Git commits git config --global user.email "youremail@example.com" - Set your email for Git commits Basic Commands git init - Initialize a new Git repository git clone ...Apr 1, 2023·2 min read
here's an example of using git push to push changes to a remote repository:Let's assume that you have made some changes to a file in your local Git repository and want to push those changes to the remote repository. First, you need to stage the changes you made using the Git add command. For example, if you modified a file...Apr 1, 2023·1 min read
Here's an A to Z guide about Git:A - Add: A Git command used to stage changes made to the working directory. B - Branch: A Git command used to create a new branch for code development. C - Clone: A Git command used to make a copy of a remote repository on a local machine. D - Diff: ...Apr 1, 2023·2 min read
What is Version Control and How Does it Work?A version control system (VCS) is a software tool that helps developers manage changes to source code and other digital files. It allows developers to keep track of revisions to a file or set of files, enabling them to collaborate with others on a pr...Apr 1, 2023·3 min read
Known Your Command LineThis is my favourite chapter of the book! The tricks I picked up on rapidly moving around in the command line have saved me an enormous amount of time over the years. In this chapter, we'll look at the ways you can rapidly move your cursor around on ...Mar 21, 2023·9 min read