Skip to content

coder dotfiles ignores '.git*' config files #8306

@ghost

Description

Currently all files starting with .git* are ignored for symlinking dotfiles.
This is ok for a '.git' folder but config files like .gitconfig should be linked.

if strings.HasPrefix(f.Name(), ".") && !strings.HasPrefix(f.Name(), ".git") {
should be changed to
if strings.HasPrefix(f.Name(), ".") && f.Name() != ".git" {

Metadata

Metadata

Assignees

Labels

s2Broken use cases or features (with a workaround). Only humans may set this.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions