diff --git a/git/gitconfig b/git/gitconfig index 637245d..6d4d059 100644 --- a/git/gitconfig +++ b/git/gitconfig @@ -12,3 +12,5 @@ ff = only [init] defaultBranch = main +[push] + autoSetupRemote = true diff --git a/shell/bashrc.d/01-common.sh b/shell/bashrc.d/01-common.sh index d91ac19..a95d968 100644 --- a/shell/bashrc.d/01-common.sh +++ b/shell/bashrc.d/01-common.sh @@ -28,7 +28,6 @@ alias j='goto' alias jqize="jq -R -r '. as \$line | try fromjson catch \$line'" alias jcurl="curl -H 'Content-Type: application/json' -H 'Accept: application/json'" alias gitlog='git log --oneline --graph' -alias gitpush='git push origin $(git rev-parse --abbrev-ref HEAD)' alias watchsync='watch grep -e Dirty: -e Writeback: /proc/meminfo' alias psgrep='ps -ef | grep -v grep | grep' alias serve='python -m http.server'