https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107397
--- Comment #6 from anlauf at gcc dot gnu.org --- (In reply to Steve Kargl from comment #5) > No. I have no idea how to add a testcase to git. > Every time I've tried, I end up deleting my git > repository and grabbing a new clone. Not a pleasant > developer experience. The workflow with git is really simple: git add path/to/file ... git commit (git gcc-commit-mklog is a tailored version for working with the gcc repo.) To create a patch for submitting, git format-patch -1 (if you don't need fancy stuff like a patch series...) With "git rebase" you can do really many useful things you would never dream of with svn. It's also easy to remove a commit from your local worktree or reorder commits (using rebase), or resetting your worktree, ... I really think you just need a good primer.