1#!/usr/bin/env bash
2
3GITCONFIG="git config"
4
5# General aliases that could be global
6${GITCONFIG} alias.prepush 'log --graph --stat origin/master..'
7
8# Alias to push the current topic branch to Gerrit
9${GITCONFIG} alias.gerrit-push "!bash scripts/git-gerrit-push"
10