Is there a restriction from uploading certain filetypes (exe in particular) into Bitbucket as part of the Git/Hg repository? I pushed a local Git repository that included some Windows utility executables that are required for my software to run, but I can't see them in Bitbucket, and when other devs cloned from Bitbucket, they didn't have the exe's either.
Well, I just dug into my end of this again based on Tim's question. There was no error, but there was also no record of the exe files in my commit.
I tried a "Show All" or my SourceTree working copy, and they weren't listed there either.
More digging - SourceTree has a global git ignore list that includes files built by Visual Studio, including .exe. After removing that, I am able to push exe files to bitbucket, and they show up there.
So, solution: Check the SourceTree (or maybe git?) global ignore file!
Do you mind sharing the location of this ignore?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There is an edit button in the Git tab of the Options dialog (there is one in the Hg tab, too).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How to upload an *.exe file on repository? I have some exe files on my local computer. But it does not show up in my repository.
When I add an text file, it shows "Uncommited changes" to commit. But when I add exe files, it does not show " uncommitted changes".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you read the answer you commented on? Check the global .gitignore file to see if all .exe files are ignored. Instructions on finding that file are in the previous comment.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Worked for me!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nope. I had no idea there was a problem until another dev who pulled the repo asked how he was supposed to run the software.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did the push fail? It should have if you don't see it in the remote repository.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.