Skip to content

Commit

Permalink
Forgot to add an alias to .gitconfig.khan needed by other aliases (#128)
Browse files Browse the repository at this point in the history
## Summary:
My previously-added aliases reference the one I just added, but since I had it configred elsewhere in gitconfig scope, I didn't notice it was missing.

Issue: XXX-XXXX

## Test plan:
Unset the alias, then let the include to this .gitconfig file bring it back in. See that you can push the branch. Use `git config --list --show-origin --show-scope` to confirm things.

Author: lillialexis

Reviewers: jeresig, csilvers, Chalayyy

Required Reviewers:

Approved By: jeresig, csilvers, Chalayyy

Checks:

Pull Request URL: #128
  • Loading branch information
lillialexis authored Nov 9, 2024
1 parent 4787411 commit 376719d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .gitconfig.khan
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
outgoing = "!git fetch >/dev/null 2>&1; git log @{upstream}..HEAD"
incoming = "!git fetch >/dev/null 2>&1; git log HEAD..@{upstream}"
update-submodule = !bash -c 'git pull --no-rebase && pushd $1 && git co master && git pull && popd && git commit ${1%/} -m Substate\\ for\\ ${1%/} -m Test\\ plan: -m None && git push' --
branch-name = "!git rev-parse --abbrev-ref HEAD"
pup = "!git push origin $(git branch-name)"
pown = "!git pull origin $(git branch-name)"
pupl = pup --force-with-lease
Expand Down

0 comments on commit 376719d

Please sign in to comment.