595 B
595 B
title, tags, expertise, author, cover, firstSeen
| title | tags | expertise | author | cover | firstSeen |
|---|---|---|---|---|---|
| Automate upstream branch creation | configuration,repository | intermediate | chalarangelo | blog_images/violin.jpg | 2022-10-19T05:00:00-04:00 |
Configures the repository to automatically create upstream branches on push.
- Use
git config --add --boolto enable automatic upstream branch creation on push. - You can use the
--globalflag to enable this setting globally.
git config [--global] --add --bool
git config --global --add --bool
# `git push` will automatically create new branches, if they don't exist