Skip to content

Instantly share code, notes, and snippets.

View ierceg's full-sized avatar

Ivan Erceg ierceg

View GitHub Profile
@ierceg
ierceg / github_gitlab_gpg_key.md
Last active August 14, 2022 10:26 — forked from ankurk91/github_gpg_key.md
Signing git commits using GPG (Ubuntu/Mac)

Github/GitLab : Signing commits using GPG (Ubuntu/Mac) 🔐

  • Do you have an Github/GitLab account ? If not create one.
  • Install required tools
  • Latest Git Client
  • gpg tools
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
@ierceg
ierceg / jenkins_ec2_slave.md
Created December 15, 2017 00:22 — forked from tfoote/jenkins_ec2_slave.md
Installing jenkins on an EC2 Windows slave
  • Create a Windows instance
  • Use the aws console to get username and password
  • log in via rdp
  • Turn off IE Enhanced security control
  • Open server settings, local server, turn it off
  • install chrome
  • Install java: https://www.java.com/en/download/
  • Create C:\Jenkins
  • go to jenkins instance
  • log in as admin
@ierceg
ierceg / supergit
Created September 23, 2015 17:41 — forked from spiderr/supergit
#!/bin/bash
# Shell Script for super-respositores that executes git on all sub-repositories
# Homepage at http://www.bitweaver.org/wiki/supergit
# Licensed under the GPL
# Authors: github.com/spiderr
function usage {
appName=`basename $0`
echo "Welcome to $appName. It acts on all directories in your project as if they were sub-respositories. For most commands, you simply type what you would normally for git, however you simply type $appName with desired parameters in the super-repository root of your project. For example:"
echo "-- To clone, type '$appName git@github.com:bitweaver/bitweaver.git -b DEV testbw' which will clone, then intiliaze + update submodules and checkout the master branch for each submodule"