Hi,

In your base git repository, type:
git rev-list <uname_hash> | grep -lF <searched_hash>

This outputs something ("(standard input)") iff you have it in.

In order to limit the search time in case of a false result, you'd better pass 
the --since=<oldest_date> to git rev-list.

There is an alternative if you have a branch pointing to your uname hash:
git branch --contains <searched_hash> | grep -lF <your_branch>

Regards.

-- 
Olivier Certner


_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "[email protected]"

Reply via email to