Cross-platform file system notifications for Go. https://fsnotify.org

Kir Kolyshkin a83458b875 README: warning about obsoleted master branch 1 year ago
.github dfdb6450cd revise pull request template 2 years ago
.editorconfig ecf2c4d441 revise editor config 4 years ago
.gitattributes 0a054074d2 Add Go modules 4 years ago
.gitignore 97dc3a7bad a fork to experiment on 9 years ago
.mailmap 08848a0f17 v1.5.0 preparation (#380) 2 years ago
AUTHORS 08848a0f17 v1.5.0 preparation (#380) 2 years ago
CHANGELOG.md 466b39d216 prepare 1.5.1, retract 1.5.0 2 years ago
CONTRIBUTING.md bd2828f9f1 replace references to OS X with macOS 7 years ago
LICENSE fce5a44540 2019 4 years ago
README.md a83458b875 README: warning about obsoleted master branch 1 year ago
fen.go b98ede5aab Revert "Add AddRaw to not follow symlinks + Fix link folloing on Windows (#289)" 2 years ago
fsnotify.go b98ede5aab Revert "Add AddRaw to not follow symlinks + Fix link folloing on Windows (#289)" 2 years ago
fsnotify_test.go b98ede5aab Revert "Add AddRaw to not follow symlinks + Fix link folloing on Windows (#289)" 2 years ago
go.mod 466b39d216 prepare 1.5.1, retract 1.5.0 2 years ago
go.sum cc8365b12c Update x/sys to latest (#379) 2 years ago
inotify.go b98ede5aab Revert "Add AddRaw to not follow symlinks + Fix link folloing on Windows (#289)" 2 years ago
inotify_poller.go 16f0d42927 add //go:build lines + add 1.17.0-rc2 to test matrix (#377) 2 years ago
inotify_poller_test.go 16f0d42927 add //go:build lines + add 1.17.0-rc2 to test matrix (#377) 2 years ago
inotify_test.go b98ede5aab Revert "Add AddRaw to not follow symlinks + Fix link folloing on Windows (#289)" 2 years ago
integration_darwin_test.go 1f285c67f7 darwin tests: Exchangedata is deprecated on 10.13 5 years ago
integration_test.go b98ede5aab Revert "Add AddRaw to not follow symlinks + Fix link folloing on Windows (#289)" 2 years ago
kqueue.go b98ede5aab Revert "Add AddRaw to not follow symlinks + Fix link folloing on Windows (#289)" 2 years ago
open_mode_bsd.go 16f0d42927 add //go:build lines + add 1.17.0-rc2 to test matrix (#377) 2 years ago
open_mode_darwin.go 16f0d42927 add //go:build lines + add 1.17.0-rc2 to test matrix (#377) 2 years ago
windows.go b98ede5aab Revert "Add AddRaw to not follow symlinks + Fix link folloing on Windows (#289)" 2 years ago

README.md

WARNING

If you are reading this, you use master branch of this repository, which is wrong.

This branch

  • should not be used;
  • is not maintained;
  • is not supported;
  • will be removed soon.

You should switch to using the default branch instead.

Using git

Here's how to switch your existing local copy of this repository from master to main (assuming the remote name is origin):

git branch -m master main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a

In addition to the above, if you want to remove the leftover origin/master remote branch (NOTE this also removes all other remote branches that no longer exist in origin):

git remote prune origin

Background

The master branch was renamed to main, causing an issue with Yocto/OpenEmbedded's meta-virtualization layer, which explicitly refers to master branch of this repository (see #426).

This temporary branch is created to alleviate the Yocto/OE issue.