Live data from Hacker News

Upload files to your repositories

github.com

21–30 of 92 posts

Re: Upload files to your repositories

#21

I like how Github is taking note about the lack of innovation, and doing the right thing; but I'd like to see the blog post announcements AFTER the feature is implemented. It's like saying "Oh, you're thirsty? I'm going to give you a glass of water, but not yet, next week"

The feature is definitely implemented as it has been available to me for about a half an hour. Apparently it will just take a little while to roll it out to all users.

Re: Upload files to your repositories

#22

This feature has interesting synergy with GitHub Pages, where .md files can simply be dragged-and-dropped into a folder to get published as a blog post on the web. It may be enough to remove the must-be-programmer-who-understands-git barrier to entry, anyways. EDIT: GitHub Pages still requires specific file naming for posts and YAML front matter, so it's not perfectly non-programmer friendly. It might be a good idea…

You mean .org files, right? :-)

I keep notes on Github that never touch a filesystem. I do my edits from a phone or tablet. If I have a lot to write, I'll use an app then copy directly into Github. Most of my notes are personal but I started breaking them out a couple weeks ago so I could keep them in public repos.

https://github.com/melling/ErgonomicNotes

https://github.com/melling/EditorNotes

Why not work directly in the version controlled cloud? Books, blogs, etc could be managed this way. No proprietary formats, no backups to worry about, and you aren't going to lose it if someone steals your device:

http://www.nydailynews.com/entertainment/tv-movies/francis-f...

Re: Upload files to your repositories

#24
post #22

This feature has interesting synergy with GitHub Pages, where .md files can simply be dragged-and-dropped into a folder to get published as a blog post on the web. It may be enough to remove the must-be-programmer-who-understands-git barrier to entry, anyways. EDIT: GitHub Pages still requires specific file naming for posts and YAML front matter, so it's not perfectly non-programmer friendly. It might be a good idea…

You mean .org files, right? :-) I keep notes on Github that never touch a filesystem. I do my edits from a phone or tablet. If I have a lot to write, I'll use an app then copy directly into Github. Most of my notes are personal but I started breaking them out a couple weeks ago so I could keep them in public repos. https://github.com/melling/ErgonomicNotes https://github.com/melling/EditorNotes Why not work directly…

I think you are just writing markdown in .org files ^^

So the .md is technically more correct. But really the extension doesn't matter much...

Re: Upload files to your repositories

#25
post #22

This feature has interesting synergy with GitHub Pages, where .md files can simply be dragged-and-dropped into a folder to get published as a blog post on the web. It may be enough to remove the must-be-programmer-who-understands-git barrier to entry, anyways. EDIT: GitHub Pages still requires specific file naming for posts and YAML front matter, so it's not perfectly non-programmer friendly. It might be a good idea…

You mean .org files, right? :-) I keep notes on Github that never touch a filesystem. I do my edits from a phone or tablet. If I have a lot to write, I'll use an app then copy directly into Github. Most of my notes are personal but I started breaking them out a couple weeks ago so I could keep them in public repos. https://github.com/melling/ErgonomicNotes https://github.com/melling/EditorNotes Why not work directly…

I think you are confused what Github Pages is: https://pages.github.com

Specifically, my method involves using drag-and-drop .md files for the Jekyll workflow.

Re: Upload files to your repositories

#26
post #11

Hmm, it almost seems like the recent brouhaha lit a fire under GitHub...

I've always been impressed with how often they release new features, it actually seems like a weekly thing for GitHub. I don't think that the events of the past two weeks accelerated that process at all.

Looking through their blog, they had a dry spell from November 16 (release of the new Repository look) to January 27 when they released the new Markdown comment editor. This is, of course, because of the holidays. Then they released the improved GitHub Importer on February 11 and now PR/Issue Templates and File Uploading yesterday and today.

Prior to the repository redesign, they released Git LFS and the Integrations Directory on October 1. So they had a full month and a half between feature releases not attributable to the holidays.

I definitely appreciate the work they've done in the past few months, but I also think it's disingenuous to say that the last month didn't cause them to double down on developing new features.

Re: Upload files to your repositories

#27
All I want is a Wiki search.... pretty please. Wiki file uploads (images) at very minimum that aren't commited to git. The process now is to create an empty issue, drag the file over, copy the URL and paste it into the Wiki page.

Re: Upload files to your repositories

#28
post #11

Hmm, it almost seems like the recent brouhaha lit a fire under GitHub...

I was thinking the same thing. It is good to see GitHub get new features, hopefully the competitors do as well. As long as we don't end up with another SourceForge at any point, one is enough.

GitLab has been doing a pretty good job of releasing new features in their monthly updates. [Last month's 8.4 release](https://about.gitlab.com/2016/01/22/gitlab-8-4-released/) has a few nice additions. 8.5 will release on Monday, mostly with a focus on performance improvements, and there are some big ones :) Also a new Issue sidebar design!

You can see [the Changelog](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELO...) for more information.

Re: Upload files to your repositories

#30
post #24
post #22

Earlier quoted context omitted.

You mean .org files, right? :-) I keep notes on Github that never touch a filesystem. I do my edits from a phone or tablet. If I have a lot to write, I'll use an app then copy directly into Github. Most of my notes are personal but I started breaking them out a couple weeks ago so I could keep them in public repos. https://github.com/melling/ErgonomicNotes https://github.com/melling/EditorNotes Why not work directly…

I think you are just writing markdown in .org files ^^ So the .md is technically more correct. But really the extension doesn't matter much...

No, he's writing in the syntax of Emacs org-mode, which GitHub also recognizes. Parts of it are similar to markdown, but parts are different.

For example, `markdown inline code` vs ~org-mode inline code~, and

    ```
    markdown code blocks
    ```
vs

    #+begin_src
    org-mode code blocks
    #+end_src
And [markdown links](https://daringfireball.net/projects/markdown/) vs [[http://orgmode.org/][org-mode links]].
Post reply on HN