Last active
January 3, 2022 06:17
-
-
Save gitspilo/4171a41de015371d429eb108366bcbfa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
**************bash_profile****************** | |
export NVM_DIR="$HOME/.nvm" | |
. "/usr/local/opt/nvm/nvm.sh" | |
# Source a git completion script | |
if [ -f $HOME/.git-completion.sh ]; then | |
. $HOME/.git-completion.sh | |
else | |
echo "Could not find git completion script" | |
fi | |
# Display the current git branch in the command prompt | |
export PS1='\u@\W$(__git_ps1 " (%s)")\$ ' | |
alias ed="cd /Users/jignesh/projects/tcm/ed-pregnancy/app" | |
alias mono="cd /Users/jignesh/projects/tcm/loyalty-monolith" | |
alias rni="react-native run-ios" | |
alias rna="react-native run-android" | |
export ANDROID_HOME=$HOME/Library/Android/sdk | |
export PATH=$PATH:$ANDROID_HOME/tools | |
export PATH=$PATH:$ANDROID_HOME/platform-tools | |
alias run_emulator="${ANDROID_HOME}/emulator/emulator -avd Nexus_5_API_24 -no-snapshot" | |
alias emulator_list="${ANDROID_HOME}/emulator/emulator -list-avds" | |
export ANDROID_SDK_ROOT="/usr/local/share/android-sdk" | |
alias fuzzy="cd /Users/jignesh/projects/fuzzyBit" | |
export DYLD_INSERT_LIBRARIES=/usr/lib/libgmalloc.dylib | |
export [email protected] | |
export AWS_ACCESS_KEY_ID=test | |
export AWS_SECRET_ACCESS_KEY=test | |
export MASTER_KEY=key | |
export DATABASE_URI=postgres://postgres:postgres@localhost:5432/loyalty_monolith | |
export ONESIGNAL_CUSTOMER_ID=ef6a0f9f-31bc-4701-8f36-60ba7ffac815 | |
export ONESIGNAL_CUSTOMER_KEY=ZmIxOTc2OTQtZDg5MC00OTE4LWE3OWUtOTEyODFhMzM4MGJh | |
export PATH=/Users/jignesh/.nvm/versions/node/v9.10.1/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/jignesh/Library/Android/sdk/tools:/Users/jignesh/Library/Android/sdk/platform-tools:/usr/local/mysql/bin | |
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH" | |
**************gitConfig****************** | |
[alias] | |
# one-line log | |
l = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short | |
a = add . | |
br = branch | |
ap = add -p | |
c = commit --verbose | |
ca = commit -a --verbose | |
cm = commit -m | |
cam = commit -a -m | |
m = commit --amend --verbose | |
d = diff | |
ds = diff --stat | |
dc = diff --cached | |
diffc = diff --cached | |
s = status -s | |
co = checkout | |
cob = checkout -b | |
# list branches sorted by last modified | |
b = "!git for-each-ref --sort='-authordate' --format='%(authordate)%09%(objectname:short)%09%(refname)' refs/heads | sed -e 's-refs/heads/--'" | |
# list aliases | |
la = "!git config -l | grep alias | cut -c 7-" | |
undo-commit=reset --soft HEAD~ | |
[user] | |
name = Keval Gondaliya | |
email = [email protected] | |
[core] | |
editor = vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment