Skip to content

Commit

Permalink
fix: git push
Browse files Browse the repository at this point in the history
```
+ git push --quiet
fatal: The current branch auto-update-sc2-datasets has no upstream branch.
To push the current branch and set the remote as upstream, use
    git push --set-upstream origin auto-update-sc2-datasets
To have this happen automatically for branches without a tracking
upstream, see 'push.autoSetupRemote' in 'git help config'.
```
  • Loading branch information
ivan-aksamentov committed Jan 28, 2025
1 parent cd87f83 commit e26aa5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/update_sc2_datasets
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ git switch --quiet --create "${BRANCH}"
# Stage commit and push the changes
git add $(printf "data/%s/tree.json " "${trees[@]}") $(printf "data/%s/CHANGELOG.md " "${trees[@]}")
git commit --quiet -m "${TITLE}"
git push --quiet
git push --quiet --set-upstream origin "${BRANCH}"

# Function to generate markdown table from the associative array
function summary_table() {
Expand Down

0 comments on commit e26aa5b

Please sign in to comment.