Message ID | 7b4f2b10-e80d-d4af-6154-6665e37da623@FreeBSD.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Commit change disappeared from repository | expand |
On 4/23/2020 3:22 PM, Renato Botelho wrote: > Hello, > > I'm sending it here to devel list because after asking around at IRC and > also to friends we ended up with no reasonable explanation about what > happened, and it lead me to consider maybe it could be a bug (!?!?) This is a common confusion with Git history. The best description of what is going on is [1], in my opinion. [1] https://docs.microsoft.com/en-us/azure/devops/repos/git/git-log-history-simplification There are other history options that will likely show the error. Specifically, run "git log --full-history --simplify-merges <path>" to do a full graph traversal and reduce the output as much as possible. 99% of these cases are due to someone resolving a merge conflict incorrectly, and you'll find that merge with the "git log" command above. Thanks, -Stolee
On 24/04/20 10:21, Derrick Stolee wrote: > On 4/23/2020 3:22 PM, Renato Botelho wrote: >> Hello, >> >> I'm sending it here to devel list because after asking around at IRC and >> also to friends we ended up with no reasonable explanation about what >> happened, and it lead me to consider maybe it could be a bug (!?!?) > > This is a common confusion with Git history. The best description of what > is going on is [1], in my opinion. > > [1] https://docs.microsoft.com/en-us/azure/devops/repos/git/git-log-history-simplification > > There are other history options that will likely show the error. > Specifically, run "git log --full-history --simplify-merges <path>" to > do a full graph traversal and reduce the output as much as possible. > > 99% of these cases are due to someone resolving a merge conflict incorrectly, > and you'll find that merge with the "git log" command above. Thank you for the explanation!
diff --git a/security/sshguard/files/patch-src_sshguard.in b/security/sshguard/files/patch-src_sshguard.in index 6881e162028f..788f0ac2bc47 100644 --- a/security/sshguard/files/patch-src_sshguard.in +++ b/security/sshguard/files/patch-src_sshguard.in @@ -1,6 +1,6 @@ --- src/sshguard.in.orig 2019-05-23 22:25:17 UTC +++ src/sshguard.in -@@ -97,14 +97,8 @@ elif [ -z "$tailcmd" ]; then +@@ -97,19 +97,12 @@ elif [ -z "$tailcmd" ]; then exit 1 fi @@ -17,3 +17,9 @@ # Make sure to kill entire process group (subshell) on exit/interrupts. trap "clean_and_exit" INT TERM + trap "kill 0" EXIT + + eval $tailcmd | $libexec/sshg-parser | \ +- $libexec/sshg-blocker $flags | $BACKEND & +-wait ++ $libexec/sshg-blocker $flags | ($BACKEND ; pkill -PIPE -P $$)