-
Whar are the Advantage of DevOps technology?
DevOps technology brings several advantages to organizations, enabling them to improve their software development and […]
-
How to delete docker images forcefully
PS C:\Users\user> docker rmi -f ec2e9b64a080Untagged: sonarqube:latest Untagged: sonarqube@sha256:51588fac6153b 949af07660decfe20b5754da9fd12c82d b5d95a0900b6024196Deleted: sha256:ec2e9b64a080a3151a94a8e6a
-
How to create a local repository in Artifactory
Step to create a local repository in Artifactory Log in to Artifactory.Click on the Repositories […]
-
Script for Git Restriction With JIRA ID
Git Restriction Command WIth JIRA ID COMMIT_MSG_FILE=$1COMMIT_SOURCE=$2SHA1=$3 JIRAIDNAME=$4 #only prepare commit message if pattern matched […]
-
How to run rsync over ssh with username and password
To use rsync over ssh with username and passoword you need to install sshpass if […]
-
How to upload big file in github
Uploading large files to GitHub can be a challenge due to file size limitations. GitHub […]
-
How to configure SSL in Apache Tomcat 9.0
Steps to configure SSL (Secure Socket Layer) in Apache Tomcat 9.0 Generate a Keystore File: […]
-
How to find file is greater than 1GB in Linux
#!/bin/bash directory=”/path/to/directory” echo “Files larger than 1GB in $directory:”echo “———————————-“ find “$directory” -type f -size […]
-
How to move git file at staging stage and creating commit the changes
Staging file and creating commit Modify the files in your Git repository as needed. Run […]