PushDefault defines the action git push should take if no refspec is given. See: https://git-scm.com/docs/git-config#Documentation/git-config.txt-pushdefault
| 443 | // PushDefault defines the action git push should take if no refspec is given. |
| 444 | // See: https://git-scm.com/docs/git-config#Documentation/git-config.txt-pushdefault |
| 445 | type PushDefault string |
| 446 | |
| 447 | const ( |
| 448 | PushDefaultNothing PushDefault = "nothing" |