Deleted unnecessary dotfiles folder
Moved all files into root folder of repository and fixed set-from-git to reflect that. I was able to get set-from-git to work without listing all the dotfiles, but it didn't work as planned due to swp files, git folder and others; it's just easier and cleaner to list out the files.
This commit is contained in:
23
aliases/.git_aliases
Normal file
23
aliases/.git_aliases
Normal file
@@ -0,0 +1,23 @@
|
||||
# . ~/.secure
|
||||
alias gs="git status -u"
|
||||
alias gpl="git pull --rebase"
|
||||
alias grbc="git rebase --continue"
|
||||
alias gps="git push"
|
||||
alias vig="vi .gitignore"
|
||||
alias ga="git add -A *"
|
||||
alias gai="git add .gitignore"
|
||||
alias gd="git diff -w"
|
||||
alias gdc="git diff --cached"
|
||||
alias gstore="git config credential.helper store"
|
||||
gcm(){ git commit -m "$1" ; }
|
||||
alias gc="git commit"
|
||||
alias gl="git log"
|
||||
alias gsl="git shortlog"
|
||||
alias gst="git stash"
|
||||
alias gstp="git stash pop"
|
||||
alias gclear="git stash clear"
|
||||
gcho() { git checkout $1 ; }
|
||||
gremotes() {
|
||||
git remote set-url --add --push origin $1
|
||||
git remote set-url --add --push origin $2
|
||||
}
|
||||
Reference in New Issue
Block a user