If a branch has been deleted in git is it still possible to identify whether specific commits were made on that deleted branch?
From what I have found so far - git branches are merely pointers so deleting them would lose the that specific part of the audit history.
Hoping that I can be proven wrong on this.
thanks,
Yes and which is exactly why deleting them would delete just the pointer.
If you have merged the branch to your mainline, you no longer need that pointer; but you will always know what all commits were made to that branch individually, unless you explicitly choose to not know the specific changes by asking for a fast-forward merge.