(no title)
r1cka
|
4 months ago
I think people worry too much about branch names. Feature branches are usually ephemeral. Prefix your branch with your personal identifier so I know who is primary on it and worry more about the commit message which will live on indefinitely.
morkalork|4 months ago
jasonjmcghee|4 months ago
With GitHub setup properly, on PR open, it auto comments the link to the ticket and links to the pr in the ticket.
wara23arish|4 months ago
Ticket link should always be included in PR description.
But branch names should be descriptive like terraform_dev_create_instance
etc
ytreister|4 months ago
alkonaut|4 months ago
delusional|4 months ago
If it has commits I care about, then it stays. If it doesn't, It goes. I'm only deleting on the server afterall, people can just push it back.
ytreister|4 months ago
loevborg|4 months ago
brettgriffin|4 months ago
ytreister|4 months ago
aizk|4 months ago
focom|4 months ago
bavent|4 months ago
I also like it for myself, when I’m going over my own PRs before asking for a review - I will often amend commits to ensure the work is broken down correctly, each thing that should go together, does.
In a way, stacked PRs are just a higher-level abstraction of this too - same idea, keep work that goes together in the same place.
xorcist|4 months ago
Hopefully the commits are already squashed and rebased before review to value reviewers' time.