About 252,000 results
Open links in new tab
  1. Download a single folder or directory from a GitHub repository

    How can I download only a specific folder or directory from a remote Git repository hosted on GitHub? Say the example GitHub repository lives here: [email protected]:foobar/Test.git Its …

  2. git - Download specific files from github in command line, not …

    Feb 6, 2012 · Copy the specific file's raw link from GitHub. (As you open the file in Github, on the top right corner you can see the option to open the file in raw mode. Open it in raw mode and …

  3. Fastest way to download a GitHub repository - Stack Overflow

    I have no idea of working on GitHub/committing code and most tutorials out there on the web seems to assume that "I would want to setup a project in GitHub" and inundate me with 15-20 …

  4. git - Download single files from GitHub - Stack Overflow

    GitHub does not support git-archive (the git feature that would allow us to download specific files). GitHub does however, support a variety of Subversion features, one of which we can use for …

  5. Is it safe to download code from GitHub? - Stack Overflow

    Nothing that you download from the internet is 100% safe. However, you can generally gauge the safety of code on Github by the following factors: # of Contributors/Commits: This tells you that …

  6. git - How to download a folder from github? - Stack Overflow

    Oct 11, 2015 · How to download a specific folder from a GitHub repo Here a proper solution according to this post: Create a directory mkdir github-project-name cd github-project-name …

  7. git - How do I pull my project from github? - Stack Overflow

    Sep 11, 2009 · 154 I have a project on github that I have been working on before. However, I wiped out my computer and I am wondering which git command should I invoke under my …

  8. There is no "zip download" button to download source in .zip on …

    Some options are to download the full zip and manually extract the subdirectory that you want, or use git with sparse checkouts instead of downloading as a zip file. This approach does …

  9. How to download source in ZIP format from GitHub? [duplicate]

    253 What happens when the repository owner has not prepared a zip file, and you just want a download to use yourself? There is an answer and you don't need to go though that horrid …

  10. How to download all files from GitHub release? - Stack Overflow

    Apr 4, 2021 · The github cli (gh) can be used for this. Here are the docs. This is for downloading all files (github release assets) from a specific github release.