Skip to content

Instantly share code, notes, and snippets.

@mikemellor11
Created April 21, 2017 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikemellor11/b7c8e4ded43bc7c244c5287b20d62a36 to your computer and use it in GitHub Desktop.
Save mikemellor11/b7c8e4ded43bc7c244c5287b20d62a36 to your computer and use it in GitHub Desktop.
# This is Git's per-user configuration file.
[core]
user = Mike Mellor
email = mike.mellor@f-grp.com
editor = subl -n -w
[user]
name = Mike Mellor
email = mike.mellor@f-grp.com
[push]
default = simple
[alias]
cc = "checkout"
c = "commit"
s = "status"
a = "add --all"
l = "log --pretty=oneline --decorate --abbrev-commit"
p = "push"
pp = "pull"
m = "merge"
sync = "!f() { \
export GIT_MERGE_AUTOEDIT=no && \
git checkout development && \
git pull upstream master && \
git push origin development && \
git checkout master && \
git merge development && \
git push origin master && \
git checkout development; \
}; f"
[credential]
helper = osxkeychain
[filter "lfs"]
smudge = git-lfs smudge -- %f
required = true
clean = git-lfs clean -- %f
[http]
postBuffer = 524288000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment