Initial chezmoi commit

This commit is contained in:
2019-04-15 00:05:48 -04:00
parent 69bb713ff4
commit fda3907f92
106 changed files with 8 additions and 562 deletions

View File

@@ -0,0 +1,5 @@
function git-amend-push
git add -A .
and git commit --amend --no-edit -S
and git push --force
end

View File

@@ -0,0 +1,4 @@
function git-delete-branch
git push origin --delete $argv[1]
and git branch -D $argv[1]
end

View File

@@ -0,0 +1,3 @@
function git-diff-files
git diff --name-only $argv[1] $argv[2]
end

View File

@@ -0,0 +1,5 @@
function git-mult-remotes
git remote set-url --add --push origin $argv[1]
and git remote set-url --add --push origin $argv[2]
and git remote -v
end

View File

@@ -0,0 +1,5 @@
function git-push-multiple
git remote set-url --add --push origin $argv[1]
and git remote set-url --add --push origin $argv[2]
and git remote -v
end