You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
-
3For a small software shop, the approach that you describe sounds ideal. The only critique I would offer is that feature branch names ought to include a ticket number, so you can tell what modifications are in scope for that feature branch, and so you can tell when the feature is done, that is, when the ticket has been closed out. Otherwise there is a tendency for feature scope to creep, so a feature branch will last for a little more calendar time than was originally envisioned for it.J_H– J_H2024-01-17 21:10:42 +00:00Commented Jan 17, 2024 at 21:10
-
@J_H The OP doesn’t mention using a “ticket system” so I don’t see how ticket numbers are relevant to the scope of this question.Guildenstern– Guildenstern2024-01-17 22:36:57 +00:00Commented Jan 17, 2024 at 22:36
-
1@Guildenstern yes. Didn't mentioned it in first place. But I want to work with milestones and issues.Jakob– Jakob2024-01-17 22:41:54 +00:00Commented Jan 17, 2024 at 22:41
-
1@Guildenstern, yes OP mentioned "Gitea server", which offers issue tracking.J_H– J_H2024-01-17 23:05:26 +00:00Commented Jan 17, 2024 at 23:05
-
2@amon I think nvie gitflow (nvie.com/posts/a-successful-git-branching-model) seems way more complicated than what I described. Ye, I thought about having only one version to support. But in our company features are often getting deployed very early to customer machines. Meanwhile other customers stay on an older release an should also get Bugfixes, while newer version is "tested" in production on customer machine.Jakob– Jakob2024-01-18 06:27:06 +00:00Commented Jan 18, 2024 at 6:27
|
Show 2 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you