Skip to content

Commit

Permalink
feat(build): add a way to commit and push (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfalkowski authored Mar 24, 2024
1 parent c5e39d0 commit 12b61cf
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build/make/git.mak
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ sync:
amend: add
git commit --amend --no-edit

# Commit the latest changes.
commit: add
git commit -am "$(msg)"

# Push the latest changes.
push:
git push -f origin $(name)

# Commit and push
commit-push: commit push

0 comments on commit 12b61cf

Please sign in to comment.