Skip to content

Instantly share code, notes, and snippets.

@aeosys
aeosys / README.md
Last active June 15, 2022 08:33
Use GitHub in SourceTree with SSO enabled personal access token

Use GitHub in SourceTree with SSO enabled personal access token

Prerequisites

  • Git with credential manager
  • Do not add GitHub account to SourceTree

Steps

  1. Create new token in https://github.com/settings/tokens
  2. Select "repo" scope
  3. Create token and copy it to clipboard
@aeosys
aeosys / Vagrantfile
Last active January 27, 2018 16:56
Oracle container
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
# https://docs.vagrantup.com.
config.vm.box = "ubuntu/xenial64"
@aeosys
aeosys / playbook.yml
Last active July 9, 2017 17:14
PHP7 dev server for Symfony
---
- hosts: all
become: true
vars:
apache_config_file: symfony.apache.conf
tasks:
# Packages
- name: Update apt cache
apt: update_cache=yes
@aeosys
aeosys / playbook.yml
Created April 4, 2016 05:06
Jenkins js slave
---
- hosts: all
become: true
tasks:
- name: Add apt repo for Node.js
shell: curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
- name: Ensure apt has updated cache
apt: update_cache=yes
@aeosys
aeosys / Vagrantfile
Created March 31, 2016 18:35
Jenkins Docker
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure(2) do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
@aeosys
aeosys / Vagrantfile
Created October 4, 2015 16:29
Phabricator Vagrant
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure(2) do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
@aeosys
aeosys / Vagrantfile
Created June 25, 2015 09:02
Hackday Vagrant
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure(2) do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at