3 Star 12 Fork 2

Git工具集/git-lfs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
.circleci
.github
commands
config
config.go
config_test.go
delayed_environment.go
environment.go
environment_test.go
extension.go
extension_test.go
fetcher.go
git_fetcher.go
git_fetcher_test.go
map_fetcher.go
netrc.go
netrc_nix.go
netrc_windows.go
os_fetcher.go
url_config.go
url_config_test.go
util_nix.go
util_windows.go
version.go
creds
debian
docker
docs
errors
filepathfilter
fs
git
lfs
lfsapi
lfshttp
locking
rpm
script
subprocess
t
tasklog
tools
tq
vendor
.gitattributes
.gitignore
.mailmap
.travis.yml
CHANGELOG.md
CODE-OF-CONDUCT.md
CONTRIBUTING.md
INSTALLING.md
LICENSE.md
Makefile
README.md
appveyor.yml
git-lfs.go
git-lfs_windows.go
go.mod
go.sum
versioninfo.json
克隆/下载
util_nix.go 222 Bytes
一键复制 编辑 原始数据 按行查看 历史
// +build !windows
package config
import "syscall"
func umask() int {
// umask(2), which this function wraps, also sets the umask, so set it
// back.
umask := syscall.Umask(022)
syscall.Umask(umask)
return umask
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/vcs-all-in-one/git-lfs.git
git@gitee.com:vcs-all-in-one/git-lfs.git
vcs-all-in-one
git-lfs
git-lfs
master

搜索帮助