We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30e3d88 commit fe63af8Copy full SHA for fe63af8
aliases
@@ -5,7 +5,8 @@ alias gc='git checkout'
5
alias gap='git add -p'
6
# copy the current branch name
7
alias gcb='git rev-parse --abbrev-ref HEAD | pbcopy'
8
-alias copy-sha='git rev-parse --short HEAD | tr -d "\n" | pbcopy'
+alias short-sha='git rev-parse --short HEAD'
9
+alias copy-sha='short-sha | tr -d "\n" | pbcopy'
10
11
# Bundler
12
alias b="bundle"
zshrc
@@ -53,9 +53,6 @@ export EDITOR='nvim'
53
54
export DISABLE_AUTO_TITLE=true
55
56
-export NEXT_TELEMETRY_DISABLED=1
57
-export SAM_CLI_TELEMETRY=0
58
-
59
for f in ~/.sources/**/*; do
60
. $f
61
done
0 commit comments