github默认看起来是不让上传这两种文件的,但是我看goagent的项目里都有这种文件,怎么传上去?
走同样的路,发现不同的人生
gitigonre file write !*.exe
github does not support exe and dll files. You can only make one compressed package Upload files in the issue ---------------------@sellingLittle Girl’s Matches Did you git push it directly?
Never tried it. . . I usually compress the exe and then push it
Github is a code hosting repository...Why do you put the binary execution file there...
Check the .gitignore file There will be
*.dll *.exe
Delete these two lines or add #
gitigonre file write !*.exe
github does not support exe and dll files. You can only make one compressed package
Upload files in the issue
---------------------
@sellingLittle Girl’s Matches Did you git push it directly?
Never tried it. . . I usually compress the exe and then push it
Github is a code hosting repository...Why do you put the binary execution file there...
Check the .gitignore file
in the .gitignore file automatically generated by Github for C/C++ projectsThere will be
Delete these two lines or add #
in front of them