Reputation: 41
I have tried the following solution but .gitignore
overriding the unignore line.
!/bin/
after compilation, it overrides as follows
!/bin/
/bin/
Upvotes: 2
Views: 103
Reputation: 41
Found these settings on microfocus Enterprise Developer :
Windows -> Preferences -> Team - Git -> Projects -> "Automatically ignore derived resources by adding them to .gitignore"
After removing or unchecking the line, it stopped updating /bin/ line on gitignore
Upvotes: 2
Reputation: 1327784
If the microfocus compiler is somehow changing the main .gitignore
, see if adding a .gitignore
in bin/
itself would help, with the content
!./
The alternative would be to wrap the compiler call with a script which would:
.gitignore
content.gitignore
content.Upvotes: 1