aboutsummaryrefslogtreecommitdiff
path: root/llvm/utils/git-svn/git-svnrevert
AgeCommit message (Collapse)AuthorFilesLines
2015-05-16Improve check on git-svnrevert, better error messageRenato Golin1-1/+6
When the commit is not in the tree at all, find-rev returns 0 and prints an empty string. We need to catch that problem too, when trying to revert. Adding a list of possible problems, so that you can easily and quickly correct without having to edit the script again. llvm-svn: 237516
2014-10-08Update git-svnrevert to accept git and svn revisionsRenato Golin1-9/+16
Interchangeable commit ids can now be used on this git-svnrevert, which will figure out what kind of commit that is (if you use format rNNNN for SVN commits) and make sure the right ids are used in the right places. It's a little bit more robust and user-friendly. llvm-svn: 219290
2013-04-26Use 'git svn find-rev' in git-svnrevert instead of shell script fu.Michael Gottesman1-4/+3
Thanks Chandler! llvm-svn: 180592
2013-04-26Added the scripts git-svnup/git-svnrevert to utils/git-svn.Michael Gottesman1-0/+53
It makes more sense to have git-svnup here than catting said file in the documentation (where we should rather point users to this directory). I included git-svnrevert as an additional gift to the community. I will update the documentation in a second commit later today. git-svnrevert takes in a git hash for a commit, looks up the svn revision for said commit and then creates the normal git revert commit message with the one liner message, except instead of saying Revert "<<<INSERT ONELINER HERE>>>" This reverts commit <<<INSERT GITHASH HERE>>> It says: Revert "<<<INSERT ONELINER HERE>>>" This reverts commit r<<<INSERT SVN REVISION HERE>>> so git hashes will not escape into our svn logs (which just look unseemly). llvm-svn: 180587