-
Notifications
You must be signed in to change notification settings - Fork 0
/
git-commands
50 lines (43 loc) · 1.6 KB
/
git-commands
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
############################################################
### GIT ALIASES
############################################################
# Copy this to ~/.gitconfig
[alias]
st = status
di = diff
co = checkout
ci = commit
cp = cherry-pick
br = branch
sta = stash
llog = log --date=local
flog = log --pretty=fuller --decorate
lg = log --oneline
lol = log --graph --decorate --oneline
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
blog = log origin/master... --left-right
ds = diff --staged
fixup = commit --fixup
squash = commit --squash
unstage = reset HEAD
rum = rebase master@{u}
sha = log --format=format:%h
pushfwl = push --force-with-lease
##############################################################
### COMMAND PROMPT
##############################################################
brew install bash-git-prompt
cat >> ~/.bash_profile <<-EOF
#####################################################################
## GIT COMMAND PROMPT - START
#####################################################################
GIT_PROMPT_ONLY_IN_REPO=1
GIT_PROMPT_THEME=Solarized
if [ -f "$(brew --prefix)/opt/bash-git-prompt/share/gitprompt.sh" ]; then
__GIT_PROMPT_DIR=$(brew --prefix)/opt/bash-git-prompt/share
source "$(brew --prefix)/opt/bash-git-prompt/share/gitprompt.sh"
fi
#####################################################################
## GIT COMMAND PROMPT - END
#####################################################################
EOF