Skip to content

Instantly share code, notes, and snippets.

View KyleAure's full-sized avatar
🏳️‍🌈
Proud

Kyle Aure KyleAure

🏳️‍🌈
Proud
  • Rochester, MN
View GitHub Profile
@trey
trey / happy_git_on_osx.md
Last active February 18, 2024 10:46
Creating a Happy Git Environment on OS X

Creating a Happy Git Environment on OS X

Step 1: Install Git

brew install git bash-completion

Configure things:

git config --global user.name "Your Name"

git config --global user.email "you@example.com"

@parmentf
parmentf / GitCommitEmoji.md
Last active July 4, 2024 10:57
Git Commit message Emoji
@KyleAure
KyleAure / .bash-profile
Last active January 9, 2020 15:57
Personal bash profile and supporting files
#Source and export of git-promt.sh
source ~/git/git-prompt.sh
#Colors
RESET="\[\033[0m\]"
RED="\[\033[01;31m\]"
GREEN="\[\033[01;32m\]"
BLUE="\[\033[01;34m\]"
YELLOW="\[\033[01;33m\]"
CYAN="\[\033[01;36m\]"
@KyleAure
KyleAure / github-notes.md
Last active August 20, 2019 22:08
Github Command Notes

Github Notes

Notes for some of the common but complicated things I do in git. All in one place so that I can copy and paste them!

Commit Triangle

When setting up a new local repo follow these steps to create a triangle that makes pull requests and other 'GitHub' specfic tasks easier to handle.

# This is the main repo such as git@github.com:OpenLiberty/open-liberty.git