Skip to content

Instantly share code, notes, and snippets.

@divs1210
Last active July 10, 2021 22:45
Show Gist options
  • Select an option

  • Save divs1210/973493941a82b28f0d4a to your computer and use it in GitHub Desktop.

Select an option

Save divs1210/973493941a82b28f0d4a to your computer and use it in GitHub Desktop.
Download a specific folder from a github repo
#!/usr/bin/python
"""
Download a specific folder from a github repo:
gitget.py https://github.com/divs1210/kilvish/tree/master/examples/bricksnball
"""
__author__ = 'Divyansh Prakash'
import sys
import subprocess
if __name__ == '__main__':
if len(sys.argv) > 1:
github_src = sys.argv[1]
try:
head, branch_etc = github_src.split('/tree/')
folder_url = '/'.join(branch_etc.split('/')[1:])
except:
print 'err:\tnot a valid folder url!'
else:
print 'fetching...'
subprocess.call(['svn', 'checkout', '/'.join([head, 'trunk', folder_url])])
else:
print 'use:\tgitget.py https://github.com/user/project/tree/branch-name/folder\n'
@divs1210

divs1210 commented Mar 5, 2020

Copy link
Copy Markdown
Author

Usage: gitget.py https://github.com/<account-name>/<project-name>/tree/master/<path-to-folder>

@dotiful

dotiful commented Jun 16, 2020

Copy link
Copy Markdown

@divs1210 how to delete .svn subfolder after download?
thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment