Initial chezmoi commit
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
function git-amend-push
|
||||
git add -A .
|
||||
and git commit --amend --no-edit -S
|
||||
and git push --force
|
||||
end
|
||||
@@ -0,0 +1,4 @@
|
||||
function git-delete-branch
|
||||
git push origin --delete $argv[1]
|
||||
and git branch -D $argv[1]
|
||||
end
|
||||
@@ -0,0 +1,3 @@
|
||||
function git-diff-files
|
||||
git diff --name-only $argv[1] $argv[2]
|
||||
end
|
||||
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user