Posts

Showing posts with the label git

SonarQube With Angular 19 on Windows: A Complete Setup and Integration Guide

  Welcome to my detailed tutorial on integrating  SonarQube  with an  Angular 19  project on  Windows ! This video will guide you through the installation and configuration process for SonarQube to analyze your code quality and improve the development workflow. In this step-by-step guide, we’ll set up the required software, configure the necessary tools, and integrate  SonarQube  with an  Angular 19  project. Whether you're a beginner or an experienced developer, this tutorial will help you understand how to run effective code analysis using SonarQube. Here is my youtube link ::::  https://youtu.be/PvwvgoMrngk What You Will Learn: In this tutorial, we will cover the following key steps: Installing Required Software:  Before starting, we need a few software installations: SonarQube:  Used for analyzing code quality and identifying issues such as bugs, vulnerabilities, and code smells. SonarScanner:  A tool used to send...

Creating Orphan branches in Bitbucket

How we can create an empty branch in bitbucket using git command? git checkout --orphan <orphan-branch-name> git rm -rf . git commit --allow-empty -m “Empty branch” git push origin <orphan-branch-name>

How to create and push new git branch without history of master/other branch

  Hi, Everyone, Here, We are going to see how to create a new branch without existing git source code. For that we need to use this (--orphan) keyword in git Create an orphan branch, It does not have a master branch source, it's like an empty branch, So, we can push our new source in this branch git checkout --orphan <name_of_the_orphan_branch> git commit Then you can push your new source in the orphan branch git push <remote-name> <orphan_branch-name> Thank you, Happy coding😊...