gitflow
semver
Our great sponsors
gitflow | semver | |
---|---|---|
113 | 586 | |
26,103 | 6,477 | |
- | 0.8% | |
0.0 | 5.9 | |
3 months ago | 20 days ago | |
Shell | ||
GNU General Public License v3.0 or later | - |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
gitflow
-
What "new-to-you" tool did you recently start using that just changed your workflow for the better?
For us it was git-flow (https://github.com/nvie/gitflow). A straightforward yet effective way to impress momentum in the use of basic strategies: master branch is for production, feature/... for developing new stuff, devel(op) branch for preparing next release (merging feature and hotfixes), release/... for release candidates, hotfix/... for zero-day or fixes on production... Absolutely nothing new, absolutely easy to do.
-
Ask HN: What made you finally grok Git?
As a beginner - each of stash, branch, staged and remote is just a swimlane, kinda like illustration here: https://nvie.com/posts/a-successful-git-branching-model/ but can't remember where did I read it initially
- Learning git as a beginner
-
Does this look like a OK git flow for small team for manual deployment without CI/CD tools? (more in comments)
Another thing that other suggested me in the comments is to use trunk-based development, which from what I understand is to only create branches directly from master, for anything you do: bugfix, hotfix, feature. Keep them short-lived, then merge back to master. It also sounds like a good idea for me (I've been getting so many options in this short time and overwhelming). Do you think trunk based development is also a good idea? It soudns similar to what GitHub suggests (GitHub Flow: https://docs.github.com/en/get-started/quickstart/github-flow), and even the guy I first got the idea of the drawing above, suggested to use something like GitFlow: https://nvie.com/posts/a-successful-git-branching-model/
Please, also consider that the GitFlow's owner himself nowadays discourages teams from using GitFlow, as he commented in his web page https://nvie.com/posts/a-successful-git-branching-model/
-
How well do you need to know git?
if you can perform all steps described in this doc (which is similar to what most companies do), you are good: https://nvie.com/posts/a-successful-git-branching-model/
-
Be effective with Bitrise CI for Android — the lessons I learned the hard way.
There is git flow approach in place, which usually means multiple feature *branches exist at the same time in a remote repository. There is at least one *pull request per story. Each pull request needs to go through an integration* process* meaning the newest commit in a pull request triggers a fresh CI build. That’s being done in order to ensure the newest change won’t introduce any flaws. Yep, automation and unit test suites test each software incrementation. Software Engineers in Test (SET) writes automation tests as “a part of“ the feature in some cases.
-
Managing Embedded SW revs?
This is more easier version of that: https://nvie.com/posts/a-successful-git-branching-model/
Under Linux I use gitflow and gitversion. The former helps me with branch and tags management, the latter keep tracks of the semantic version in a semi-automatic fashion (given a branch/commit/tag it generate a semver automatically based on the repo log). Gitflow should be supported by GUI tools too, but I'm more a CLI guy.
-
Well-Architected Framework Review - Part III reliability
Manage change in automation: Changes to your infrastructure should be made using automation and IaC Tool, such as CDK or terraform. The changes that need to be managed include changes to the automation, which then can be tracked and reviewed, for example, in a VCS such as git and services such as GitHub with a branching model, such as git-flow.
semver
-
What's "language version 2.0"?
Kotlin obviously doesn't follow Semantic versioning, they've taken the liberty to deprecate 'stable' API's to fix inconsistencies and keep the language modern, and that's one of the main selling points of Kotlin.
-
Publishing to PyPI via GitHub Action
I am trying to follow the semantic versioning practice (as recommended), so my pyproject.toml file has the initial version set to version = "0.1.0". (I didn't set it up before but that's fine - I'd like my next version to be 0.1.1 after some additional changes). I expect to manually change it, create a tag, and push that to my main branch for the action to run.
-
GitHub - Auto-merge Dependabot PRs
If you are using/consuming Dependabot this GitHub Action is for you. It's a real time saver! It allows to automatically Approve and Merge Dependabot's PRs based on Semantic Versioning update type.
-
Samsung One UI 5.1: This is new - and not just for the Galaxy S23
Using semantic versioning, those 0.x version upgrades specifically are for added features. Major version upgrades (e.g. 1.0 to 2.0) are to indicate breaking changes.
-
Static Site Generator (SSG) Visions, Roadmaps, and Trajectories: What to Watch in 2023
2023 promises a gentler transition to Nuxt 4, with a consistent release cycle (following semver), patch releases roughly weekly and minor releases roughly monthly. Overall, we should see fewer, if any, breaking changes.
-
It's not much, but I finally got into scripting and made a script that launches a ship into "orbit". Couldn't be happier with it!
B) Version your "working chunks!" (I like https://semver.org/)
-
Tools for Semantic Versioning
Semantic Versioning (also known as SemVer) is a widely-used method of versioning software releases. It uses a version number in the format of X.Y.Z (Major.Minor.Patch), where:
-
esbuild v0.17.0 - a major new release (with some backwards-incompatible changes)
From semver.org:
-
I just learnt about regexes and I'm so darn excited.
Generating the next release version (semantically) based on the changes, then writing it to the pubspec.yaml file.
-
Protogen x5.8 Rebuilt Official Release
In the software world, we use something called Semantic Versioning (https://semver.org/) when it comes to versioning the things we create. It uses three different numbers, all of which have a specific meaning, for example, "v1.2.3". The semver website explains what they mean in the software world, in your case it could mean something like (given X.Y.Z):
What are some alternatives?
react-native - A framework for building native applications using React
semantic-release - :package::rocket: Fully automated version management and package publishing
standard-version - :trophy: Automate versioning and CHANGELOG generation, with semver.org and conventionalcommits.org
argocd-example-apps - Example Apps to Demonstrate Argo CD
helmfile - Deploy Kubernetes Helm Charts
changesets - 🦋 A way to manage your versioning and changelogs with a focus on monorepos
Poetry - Python packaging and dependency management made easy
keep-a-changelog - If you build software, keep a changelog.
TermuxBlack - Termux repository for hacking tools and packages
lerna - :dragon: Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository.
Flutter - Flutter makes it easy and fast to build beautiful apps for mobile and beyond
fswatch - A cross-platform file change monitor with multiple backends: Apple OS X File System Events, *BSD kqueue, Solaris/Illumos File Events Notification, Linux inotify, Microsoft Windows and a stat()-based backend.