git-backport.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. #!/usr/bin/env python3
  2. # Copyright (C) 2020 Free Software Foundation, Inc.
  3. #
  4. # This file is part of GCC.
  5. #
  6. # GCC is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 3, or (at your option)
  9. # any later version.
  10. #
  11. # GCC is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with GCC; see the file COPYING. If not, write to
  18. # the Free Software Foundation, 51 Franklin Street, Fifth Floor,
  19. # Boston, MA 02110-1301, USA.
  20. import argparse
  21. import os
  22. import subprocess
  23. script_folder = os.path.dirname(os.path.abspath(__file__))
  24. fixup_script = os.path.join(script_folder, 'git-fix-changelog.py')
  25. if __name__ == '__main__':
  26. parser = argparse.ArgumentParser(description='Backport a git revision.')
  27. parser.add_argument('revision', help='Revision')
  28. args = parser.parse_args()
  29. subprocess.run('git cherry-pick -x %s' % args.revision, shell=True)
  30. subprocess.run(fixup_script, shell=True)