-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also commit updated debts after running job
- Loading branch information
1 parent
124c5d8
commit d82d93a
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,14 +23,14 @@ echo "... done." | |
|
||
# Note that running this locally would cause your global | ||
# git config to be modified | ||
echo "Committing updated transactions and attributions back to repo..." | ||
echo "Committing updated accounting records back to repo..." | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Old Abe" | ||
git add abe/transactions.txt abe/attributions.txt abe/valuation.txt abe/itemized_payments.txt abe/advances.txt | ||
git add abe/transactions.txt abe/attributions.txt abe/valuation.txt abe/itemized_payments.txt abe/advances.txt abe/debts.txt | ||
|
||
set +e | ||
|
||
git commit -m "Updated transactions and attributions" | ||
git commit -m "Updated accounting records" | ||
git fetch | ||
git rebase origin/`git remote set-head origin -a | cut -d' ' -f4` | ||
git push origin `git remote set-head origin -a | cut -d' ' -f4` | ||
|