| ▲ | Archiving Git branches as tags(etc.octavore.com) |
| 107 points by octavore 4 days ago | 31 comments |
| |
|
| ▲ | AdieuToLogic 5 hours ago | parent | next [-] |
| On a related note, git supports incorporating custom commands via executables available in the `PATH` having the naming convention of: git-<command name>
Where "command name" in this case would be `archive-branch` and could be defined thusly: #!/bin/sh
# git-archive-branch
git_branch="${1:-$(git branch --show-current)}"
git co main &&
git tag archive/$git_branch $git_branch &&
git branch -D $git_branch
It then could be invoked the same as the alias: git archive-branch ...
|
| |
|
| ▲ | ziml77 12 hours ago | parent | prev | next [-] |
| Seems like a sensible way to archive branches. It's not like a tag and branch are actually very different anyway, right? A tag is a pointer that always refers to the same commit while a branch is a pointer that follows commits forward. And for something that's archived, you don't need the pointer updating mechanism. |
| |
| ▲ | progval 12 hours ago | parent | next [-] | | > A tag is a pointer that always refers to the same commit It's not guaranteed not to change. The UI just makes it harder to update. | | |
| ▲ | QuantumNomad_ 12 hours ago | parent [-] | | And anyone whose coworkers replace tags on a regular basis will be familiar with the following message from git when pulling changes: would clobber existing tag Really wish my coworkers would leave old tags as they were heh. | | |
| ▲ | toenail 12 hours ago | parent [-] | | A hook should be able to prevent that | | |
| ▲ | monkpit 10 hours ago | parent [-] | | Hooks only keep honest people honest :) and an LLM will happily clobber a tag and skip hooks while the user just spams “accept”. | | |
| ▲ | mroche 10 hours ago | parent | next [-] | | Luckily commonly used forges for collaboration have the ability to make tags immutable. Any repository where multiple people collaborate on a project should have that feature enabled by default. I'm still waiting for the day where tags are immutable by default with no option exposed to change it. I'm sure that would cause problems for some, but transitive labels already exist in Git: branches. | | |
| ▲ | MadnessASAP 9 hours ago | parent | next [-] | | I dont find the idea of a immutable "descriptive" tag or branch to be that useful (I also dont find the differentiation of tags and branches to be useful either) I've seen plenty of repositories where tags end up being pretty ambiguous compared to each other or where "release-20xx" does not actually point to the official 20xx release. Immutable references are more typically handled by builders and lockfiles to which Git already has a superior immutable reference system, the commit hash. | | |
| ▲ | mroche 4 hours ago | parent [-] | | I 100% agree on the latter (the tag != release is more of a project management issue), and the same concept applies to containers and their digest hashes. The main issue at the end of the day is the human one: most people don't like looking at hashes, nor do they provide context of progression. I would say "give both" and make sure they match on the end user side of things, but tags are the most common way (open source) software releases are denoted. |
| |
| ▲ | Buttons840 8 hours ago | parent | prev | next [-] | | As long as we can create and delete tags, they will never be immutable, right? | | |
| ▲ | mroche 4 hours ago | parent [-] | | The purpose of the forge is to be able to prevent this. Protected tags are usually a feature which provides a way to mark tags as untouchable, so removal would require a minimum level of trust to the repository on the platform. Otherwise, attempts to push tag deletions or changes for tags matching the protected pattern would be rejected/ignored. Of course, the repository owner has unlimited privilege here, hence the last part of my prior comment. |
| |
| ▲ | jaggederest 6 hours ago | parent | prev [-] | | Tags are just a text file with a name and the sha of the tag object (with the commit and some metadata/signatures as contents), last I checked. It's deliberately simple and thus almost impossible to actually lock it down in concrete terms. Packed refs are a little more complicated but all of the storage formats in git are trivial to manually edit or write a tool to handle, in extremis. | | |
| |
| ▲ | venturecruelty 3 hours ago | parent | prev | next [-] | | Can't solve culture problems with technology, but we all know that by now, right? | |
| ▲ | Denvercoder9 9 hours ago | parent | prev [-] | | That's true for local hooks, but neither a dishonest person nor an LLM can bypass a pre-receive hook on the server (as long as they don't have admin access). |
|
|
|
| |
| ▲ | paulddraper 9 hours ago | parent | prev [-] | | Correct. One is refs/heads/<name> and the other is refs/tags/<name> Branches are expected to change. When a commit is authored, HEAD (the current branch) updates to that commit. Tags are expected not to change (though they can). | | |
| ▲ | lucasoshiro 7 hours ago | parent [-] | | Other difference (actually, more like a consequence of what you said) is that Git keeps reflogs for branches but not for tags |
|
|
|
| ▲ | derriz 10 hours ago | parent | prev | next [-] |
| > Important note: the strange magic requires the official git completion script. I dislike the official git completion script because it’s so slow when working with large repos. On macOS - because of vagaries of the way its file system works - with large repos it’s effectively unusable. Hint to completion script writers: if your “smart” completion ever takes seconds, it’s worse than useless and far worse than “dumb” filename completion. |
|
| ▲ | PunchyHamster 12 hours ago | parent | prev | next [-] |
| How often did you go back to the archived tagches that are older than say, 6 months ? Seems very niche, unless dunno, there are no version tags in the repo. |
| |
| ▲ | yawaramin 12 hours ago | parent | next [-] | | True. At work our flow is to tag commits that we want to mark as release candidates and delete feature branches after their PRs are merged/declined. We've never had a need to archive branches. | | |
| ▲ | phire 12 hours ago | parent | next [-] | | It seems very useful for archiving branches that never got merged. Sometimes I work on a feature, and it doesn’t quite work out for some reason or another. The branch will probably never get merged, but it’s still useful for reference later when I want to see what didn’t work when taking a second attempt. Currently, those abandoned branches have been polluting my branch list. In the past I have cloned the repo a second time just to “archive” them. Tags seem like a better idea. | | |
| ▲ | skydhash 12 hours ago | parent | next [-] | | I don’t think I’ve ever returned to a branch that I can easily rebase on top of the main branch. And if I really wanted to, I’d prefer to extract a patch so that I can copy the interesting lines. Any branch older than 6 months is a strong candidate for deletion. | |
| ▲ | dotancohen 12 hours ago | parent | prev | next [-] | | I sometimes leave merged branches around for quite a while, because I squash them when I merge to master and sometimes when tracking down a bug the ability to bisect very handy. | | |
| ▲ | matijsvzuijlen 10 hours ago | parent [-] | | What made you decide to squash when merging instead of leaving the commits in the history so you can always bisect? | | |
| ▲ | dotancohen 2 hours ago | parent | next [-] | | The range reason your history textbook is not infinitely long. The longer something is, the less digestible. When we need more granularity, it's there in the branches. | |
| ▲ | quesera 8 hours ago | parent | prev [-] | | Not GP, but we do the same. Branches become the atomic unit of bisection in master, but the need is extremely rare. I think because we have good tests. We also keep merged branches around. This has never happened, but if we needed to bisect at the merged-branch level, we could do that. I know squash-merge isn't everyone's cup of tea, but I find it to be simpler and clearer for the 99+% case, and only slightly less convenient for the remainder. |
|
| |
| ▲ | ervine 10 hours ago | parent | prev [-] | | Wonder if it's worth squashing in the branch, merging to main, then immediately reverting. Now the work is visible in history, branch can be deleted, and anyone in the future can search the ticket number or whatever if your commit messages are useful. Dunno if it's worth polluting history, just thinking out loud. |
| |
| ▲ | fragmede 12 hours ago | parent | prev [-] | | if you're deleting branches then why would you need to archive them? What would you even archive if you're deleting them? My deeper question is why are you deleting them in the first place though? |
| |
| ▲ | venturecruelty 3 hours ago | parent | prev [-] | | Believe it or not, some people need to use software more than six months old. |
|
|
| ▲ | tonymet 11 hours ago | parent | prev [-] |
| IMO a cleaner way to do this is with a headless remote, either on disk or “backed up” on a server. `git push —-all` won’t delete refs on the remote, so you don’t have to do any additional work to record or recover them. `git push —all backup` will record all of your refs and tags If you are archiving branches in your own rep, prefix with `ar/` so you can grep -v to conceal them. See also `git notes` to record metadata an against a commit without changing the commit |