Re: jni_md.h not found on freebsd
Posted by
Michael Bien on
Jun 27, 2010; 4:00pm
URL: https://forum.jogamp.org/jni-md-h-not-found-on-freebsd-tp922667p925762.html
jerron,
the committer name is "m0". Is this ok or did you forget to set the git config?
$ git config --global user.name "foobar"
$ git config --global user.email "foobar@somewhere.com"
you could fix it by rewriting the history of your local repo (but make a backup first):
script:
git filter-branch --commit-filter '
if [ "$GIT_AUTHOR_NAME" = "m0" ];
then
GIT_COMMITTER_NAME="<New Name>";
GIT_AUTHOR_NAME="<New Name>";
GIT_COMMITTER_EMAIL="<New Email>";
GIT_AUTHOR_EMAIL="<New Email>";
git commit-tree "$@";
else
git commit-tree "$@";
fi' HEAD
where author name/mail should match committer name/mail.
you can check if it worked with git log or gitk.
and later push it with:
git push -f origin freebsd-fixes
doing those things after we pulled is almost impossible.
regards,
michael