Compare commits

..

4 Commits

Author SHA1 Message Date
636128e2f1 Fixes the ln alias to work on linux. 2026-01-24 01:22:09 -08:00
9685a253a7 Adds some http config stuff to git config. 2026-01-24 01:20:56 -08:00
dc69d2236e Adds missing amend alias to git config. 2026-01-24 01:20:27 -08:00
6469043bcc Adds google cloud support. 2026-01-24 01:19:49 -08:00
3 changed files with 13 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
[alias]
amend = commit --amend --no-edit
br = branch
brr = branch -r
co = checkout
@@ -17,3 +18,7 @@
[user]
name = Tom Hicks
email = headhunter3@gmail.com
[http]
lowSpeedLimit = 1000
lowSpeedTime = 60
postBuffer = 524288000

View File

@@ -21,7 +21,8 @@ alias ll='ls -G --color=auto -l'
alias lld='ls -G --color=auto -l -d'
alias lsg='ls | grep --color'
alias llg='ls -l| grep --color'
alias ln='ln -ivw'
#alias ln='ln -ivw'
alias ln='ln -iv'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'

View File

@@ -0,0 +1,6 @@
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/home/tom/Downloads/GCloud/google-cloud-sdk/path.bash.inc' ]; then . '/home/tom/Downloads/GCloud/google-cloud-sdk/path.bash.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/home/tom/Downloads/GCloud/google-cloud-sdk/completion.bash.inc' ]; then . '/home/tom/Downloads/GCloud/google-cloud-sdk/completion.bash.inc'; fi