My compiled Go code does not end with an extension on Linux.
Any tips for handling ignoring these in the .gitignore file?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Keep your build products separate from your source code. This has several advantages:
rm -rf objdirwill remove files that a buggymake cleanwill missgit clean -dxfwill clean your source tree, but won’t touch your built filesNote that GNU Automake and Make support a feature called VPATH to make it easy to separate the source tree from the build tree.