Results 27 comments of Alpha Chen

I don't see why not - the main weird thing that git-together does is alias `git`, so I would imagine that clean/smudge filters wouldn't be affected. Depends if git-lfs also...

I'm not sure I want to add this additional functionality into git-together when it can be implemented on top of git-together. @xinzweb has done this in the form of [pivotal/git-author](https://github.com/pivotal/git-author),...

Some breadcrumbs for me (or anyone interested in poking around at this): https://github.com/rust-lang/libc/issues/290 https://users.rust-lang.org/t/statically-linking-to-crt-on-msvc/9755 I don't remember how the Windows builds work, so will need to dig into that...

Probably dropping the appropriate `.cargo/config` [somewhere in here](https://github.com/kejadlen/git-together/blob/master/appveyor.yml#L24-L35) would work.

This happens because git-together passes the `--signoff` command to `commit` and `merge`. (That's what adds the `Signed-off-by` text in the commit message.) A possible (and probably pretty safe) fix would...

Yup, totally - this is high up on my todo list, but I haven't gotten around to working on git-together in a while. Next thing I do, I promise! :)

Makes sense - I'd been wanting to add a configuration for this in git's config, rather than an environment variable, though. You could set `git-together.global` to `true` or something in...

Looks like `openssl-sys` is an indirect dependency from `git2`. It seems like there's a way to [statically link `openssl`](https://github.com/sfackler/rust-openssl#vendored). I'll experiment with setting that manually in `git-together`'s Cargo.toml will have...

I don't have access to an M1 Mac, so I don't know what needs to be done here to build a release that works out of the box for both...

Looks like an issue w/locking the git repo, but since this runs after the git commit command does, I'm not sure what recourse we have besides adding a retry w/backoff...