You can do git tag -l archived* for a list of tags that have the archived/ prefix. prefixing archived branches with "archived/" is a convention, but seems like a decent idea. There are various ways to search through the entire commit history and ways you could do so starting from each tag starting with archived/, so the answer is yes, but you’d have to do a bit of scripting. The other answer is that if they’ve been properly synced up with master, then you’re not going to learn anything you wouldn’t find using git log and its various options on the master branch, where you can fairly easily ask that question. You probably already know what branch belongs to whom from the names.
On Sep 29, 2015, at 14:46 , Syd Bauman
wrote: I think this may be exactly what I was hoping for when I asked about hiding or moving the branch instead. But we may not remember it was hcayless-appcrit as opposed to hughc-critapp. How does one get a list of branches that have been tagged and deleted? Something like 'git list archived/'?
And can you ask the question "which archived branches had commits from MrClean more than a month ago?"?
Looks like the best practice is to tag your branch and then delete it. That way it's not cluttering up your list of branches, but you can still get at it if you need to: $ git tag -a archived/hcayless-appcrit $ # write a description of what's in the branch $ git push origin archived/hcayless-appcrit $ git branch -d hcayless-appcrit $ git push --delete hcayless-appcrit That tags and annotates the branch, pushes it up to Github, deletes the branch locally, and then deletes in on the remote. If you want to go digging through the old branch, you can do $ git checkout -b hcayless-appcrit archived/hcayless-appcrit And you'll have a local copy you can mess around with. I like that. Thoughts? -- tei-council mailing list tei-council@lists.tei-c.org http://lists.lists.tei-c.org/mailman/listinfo/tei-council
PLEASE NOTE: postings to this list are publicly archived