mirror of
https://github.com/nektos/act.git
synced 2026-04-26 01:15:51 +03:00
[GH-ISSUE #1160] Enhancement: core.excludesfile .gitignore (file) support #651
Labels
No labels
area/action
area/cli
area/docs
area/image
area/runner
area/workflow
backlog
confirmed/not-planned
kind/bug
kind/discussion
kind/external
kind/feature-request
kind/question
meta/duplicate
meta/invalid
meta/need-more-info
meta/resolved
meta/wontfix
meta/workaround
needs-work
pull-request
review/not-planned
size/M
size/XL
size/XXL
stale
stale-exempt
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/act#651
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @hakre on GitHub (May 11, 2022).
Original GitHub issue: https://github.com/nektos/act/issues/1160
Describe feature
the git (config)
core.excludesfilesets a user-wide core ".gitignore" that applies to all projects.currently act's
.gitignorefeature does not take it into account, paths ignored by it are copied into the container.Backgound:
core.excludesfilegit-config Settingfrom the git-book (Customizing Git Configuration):
another reference is
core.excludesFileon the git-config(1) page:act's.gitignorefeature.gitignorefile support:.gitignore(per-directory) support: exists (by default, disable per--use-gitignore=false, compare #537).git/info/excludesupport: exists (see #1000)core.excludesfilesupport: missing (this feature request #1160)(report backstory: #1158)
@grigorye commented on GitHub (Jun 2, 2022):
Just in case, I feel like basically support for git config is not there: I'm not that interested in support for
core.excludesfileper se, rather I'm blocked by no support forhttp.proxyand the likes.Update: a partial workaround that seems to work as alternative for a single case of
http.proxyin git config, is setting the environment variable, HTTP_PROXY (or HTTPS_PROXY) accordingly.