Uploading files directly on github.com - file-upload

can i upload my files to my github.com repository without using Github for Windows?
Is there any file upload button in github.com?
I searched through all the questions about file-upload on github but all have answers using github windows client.

As far as I know, there is no way to upload a file from github.com. However, you can create new files:

Related

Dropbox how to download more than 10k files

I'm working on a project where my client has uploaded files on dropbox. He has uploaded ~39k articles. The problem is when I try to download them from dropbox, I get an error "The zip file is too large". I've been trying to download that data somehow but haven't been able to download it yet.
Any ideas how to download such enormous number of files from dropbox ?

Google Cloud Repositories does not show images in markdown file

It is almost 3 days that I am working on finding a solution to display the images in my Google cloud repository.
I did the same on bitbucket account and it works fine, but when I push everything into the google cloud repository the image does not show up in my README.md file.
I do not have any nested folder and all the files are placed into the root.
bellow you can find the syntax I used in my markdown file:
![google](google.png "Optional title")
![google](/google.png "Optional title")
![google](/master:google.png "Optional title")
None of them are working, I found another post on stack overflow that Google cloud repositories are a kind of bare repository. does it means there NO way to do that?
Could you please help me out with this?
I think this is not possible. Such a feature is not listed in the official documentation. Too bad are not a lot of people complaining about this. The only thing I could find was the following:
The only option is mirroring to Github or Bitbucket, but I think that is not what something you want. You could also just use Github instead of Cloud Repositories, which now integrates nicely with the google cloud platform, specifically Cloud Build.

using wget (or other) download highest file version from dropbox

I use the windows variant of wget for scripted downloads of various files but was wondering if it could achieve the following.
Where I work, new versions of the software are regularly released into the company dropbox. I am tasked with making a script that can interrogate the versioning of the file name in the dropbox folder and if its a newer file version than the one currently in the folder where the script was run, it will download and update the file. Kind of like "check for update" kind of thing (newer file version found, downloading, please wait)
Is this possible with Wget or would I need a different program altogether?
Many thanks
It will need using dropbox API. Read in https://www.dropbox.com/developers/documentation/http/overview may can help.

Aptana Studio 3 - Compress CSS/Javascript and upload

Hy everybody,
I've an Aptana Project already synched with an ftp connection to my deploy server.
Everytime I save a script,Aptana to upload it to FTP server through the Deploy Options.
Now I wonder if there is some Ruble or similar plugin/script that can do the following steps:
I edit the file and save it -> aptana save the uncompressed file on my local hard drive (I'll need to put it on version control) then create a minified/obfuscated version and upload it to ftp.
Is it possible?
I've already created a Ruble that compress my CSS and Javascript files through YIUCompressor but I don't know how to retrieve the FTP informations of every specific project and the upload only the minified version.
Any help is appreciated. Thanks

Upload project zipped to github and unzip after uploading

I have opensource project needed to be uploaded to GitHub when I upload it unzipped it takes a lot of time to do so
so I'm asking for a way to upload it zipped and unzip it after uploading it
thanks in advance :)
You will have no choice but to do a regular git push. This will be as fast as uploading a zipped archive, maybe even faster.
Try using ssh and not https for your remote connection.