Skip to content

Commit 7f6e53b

Browse files
R-omkr-omk
authored and
r-omk
committed
Update git.go
fix bug with auto line endings, which leads to uncleared status of repo https://help.github.com/articles/dealing-with-line-endings/#per-repository-settings
1 parent df81cd8 commit 7f6e53b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ func (s *GitRepo) Update() error {
158158

159159
// UpdateVersion sets the version of a package currently checked out via Git.
160160
func (s *GitRepo) UpdateVersion(version string) error {
161-
out, err := s.RunFromDir("git", "checkout", version)
161+
out, err := s.RunFromDir("git", "checkout", "-f", version)
162162
if err != nil {
163163
return NewLocalError("Unable to update checked out version", err, string(out))
164164
}

0 commit comments

Comments
 (0)