Skip to content

Commit

Permalink
chore(NO-JIRA): enforce rebase when pulling private branch
Browse files Browse the repository at this point in the history
* removes dependence on user's Git config
  • Loading branch information
George Harley committed Jan 17, 2024
1 parent 3b657c4 commit 36c7db9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ init:
git remote add private [email protected]:eeveebank/remote-pair-programming-test-private

push-test:
git checkout -b car-api && git pull private car-api && git push origin car-api
git checkout -b car-api && git pull private car-api --rebase && git push origin car-api

delete-test:
git reset --hard && git checkout master && git push -d origin car-api && git branch -D car-api
git reset --hard && git checkout master && git push -d origin car-api && git branch -D car-api

0 comments on commit 36c7db9

Please sign in to comment.