resolve master conflict

This commit is contained in:
risk danger olson 2016-11-15 10:09:08 -07:00
commit 125ece2497
2 changed files with 4 additions and 1 deletions

@ -7,6 +7,7 @@ import (
"github.com/git-lfs/git-lfs/git"
"github.com/git-lfs/git-lfs/lfs"
"github.com/rubyist/tracerx"
"github.com/spf13/cobra"
)
@ -66,6 +67,8 @@ func prePushCommand(cmd *cobra.Command, args []string) {
continue
}
tracerx.Printf("pre-push: %s", line)
left, right := decodeRefs(line)
if left == prePushDeleteBranch {
continue

@ -272,7 +272,7 @@ func (c *CountingReadCloser) Read(b []byte) (int, error) {
c.Count += n
if c.isTraceableType {
if n > 0 && c.isTraceableType {
chunk := string(b[0:n])
if c.useGitTrace {
tracerx.Printf("HTTP: %s", chunk)