-
Notifications
You must be signed in to change notification settings - Fork 979
Closed
Labels
s2Broken use cases or features (with a workaround). Only humans may set this.Broken use cases or features (with a workaround). Only humans may set this.

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" {
cmbrad
Metadata
Metadata
Assignees
Labels
s2Broken use cases or features (with a workaround). Only humans may set this.Broken use cases or features (with a workaround). Only humans may set this.