Skip to content

Commit

Permalink
Remove calls to hooks-check.sh now that we've deleted it (#133)
Browse files Browse the repository at this point in the history
## Summary:
See this PR: Khan/webapp#28336, and this thread: https://khanacademy.slack.com/archives/C013ANU53LK/p1737054500403279

Issue: FEI-6073

## Test plan:
Test the aliases that were affected

Author: lillialexis

Reviewers: csilvers, somewhatabstract

Required Reviewers:

Approved By: csilvers, somewhatabstract

Checks:

Pull Request URL: #133
  • Loading branch information
lillialexis authored Jan 17, 2025
1 parent b1a8f2e commit f21cdcb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .gitconfig.khan
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
# Versions of commands that handle submodules properly.
# co will also try to convert a git PR to a tag if it can.
co = "!f() { if [ -n \"$1\" -a -z \"$2\" ]; then git checkout "`revisionid-to-diffid.sh --tag \"$@\"`"; else git checkout \"$@\"; fi && git submodule update --init --recursive; }; f"
p = "!f() { git pull \"$@\" && git submodule update --init --recursive && if [ -s tools/hook-check.sh ]; then tools/hook-check.sh --fast; fi; }; f"
m = "!f() { git merge \"$@\" && git submodule update --init --recursive && if [ -s tools/hook-check.sh ]; then tools/hook-check.sh --fast; fi; }; f"
gsu = "!f() { git submodule sync --recursive && git submodule update --init --recursive && if [ -s tools/hook-check.sh ]; then tools/hook-check.sh --fast; fi; }; f"
p = "!f() { git pull \"$@\" && git submodule update --init --recursive; }; f"
m = "!f() { git merge \"$@\" && git submodule update --init --recursive; }; f"
gsu = "!f() { git submodule sync --recursive && git submodule update --init --recursive; }; f"

# Branch management for dealing with github-style deploys.
# e.g. deploy-branch, review-branch, find-reviewers
Expand Down

0 comments on commit f21cdcb

Please sign in to comment.