Skip to content

Instantly share code, notes, and snippets.

View Sahu-Ayush's full-sized avatar
🏠
Working from home

Ayush Sahu Sahu-Ayush

🏠
Working from home
View GitHub Profile
@Sahu-Ayush
Sahu-Ayush / GitCommitBestPractices.md
Created March 9, 2023 06:53 — forked from luismts/GitCommitBestPractices.md
Git Tips and Git Commit Best Practices

Git Commit Best Practices

Basic Rules

Commit Related Changes

A commit should be a wrapper for related changes. For example, fixing two different bugs should produce two separate commits. Small commits make it easier for other developers to understand the changes and roll them back if something went wrong. With tools like the staging area and the ability to stage only parts of a file, Git makes it easy to create very granular commits.

Commit Often

Committing often keeps your commits small and, again, helps you commit only related changes. Moreover, it allows you to share your code more frequently with others. That way it‘s easier for everyone to integrate changes regularly and avoid having merge conflicts. Having large commits and sharing them infrequently, in contrast, makes it hard to solve conflicts.

variable regions_as_objects {
type = list(object({
zone = string
region = string
}))
default = [
{
zone = "us-east1-c"
region = "us-east1"
@Sahu-Ayush
Sahu-Ayush / warning target packages
Created August 26, 2022 10:32 — forked from nimeshpahadi/warning target packages
main/binary-amd64/Packages -> configured multiple times in /etc/apt/sources.list.d
# Navigated to /etc/apt/sources.list.d/
cd /etc/apt/sources.list.d/
# Edited google.list by invoking
eg: sudo nano google.list
# Commented out the source with a '#'
# Save and run
sudo apt-get update
@Sahu-Ayush
Sahu-Ayush / groovy-create-user.md
Created August 18, 2022 07:32 — forked from hayderimran7/groovy-create-user.md
Jenkins Groovy enable security and create a user in groovy script

This is a snippet that will create a new user in jenkins and if security has been disabled , it will enable it :)

import jenkins.model.*
import hudson.security.*

def instance = Jenkins.getInstance()

def hudsonRealm = new HudsonPrivateSecurityRealm(false)
hudsonRealm.createAccount("MyUSERNAME","MyPASSWORD")
instance.setSecurityRealm(hudsonRealm)