Is it possible to ignore a particular executable file using .gitignore?

后端 未结 1 829
伪装坚强ぢ
伪装坚强ぢ 2021-01-15 04:16

Suppose I get myProgam executable file on Mac as a result of compiling my code like this:

 gcc -o myProgram myProgram.c

How ca

1条回答
  •  感动是毒
    2021-01-15 04:43

    Add

    myProgram
    

    on a separate line in your .gitignore file

    0 讨论(0)
提交回复
热议问题