https://github.com/JuliaLang/julia
Revision 64de065a183ac70bb049f7f9e30d790f8845dd2b authored by FX Coudert on 26 March 2024, 12:56:03 UTC, committed by GitHub on 26 March 2024, 12:56:03 UTC
According to the release notes, three breaking (ABI) changes are handled
here:

- `GIT_CONFIG_LEVEL_WORKTREE` constant (and modification to value of
`GIT_CONFIG_LEVEL_APP`)
- `git_config_entry` structure
- `git_push_options` structure

https://github.com/libgit2/libgit2/releases/tag/v1.8.0
1 parent 86a697c
Raw File
Tip revision: 64de065a183ac70bb049f7f9e30d790f8845dd2b authored by FX Coudert on 26 March 2024, 12:56:03 UTC
Update libgit2 to 1.8.0 (#53840)
Tip revision: 64de065
.gitignore
/*.tar.gz
/tmp
/dist
/dist-extras
/julia
/julia.bat
/usr
/oprofile_data
/usr-staging
/Make.user
/julia-*
/source-dist.tmp
/source-dist.tmp1

*.expmap
*.exe
*.dll
*.dwo
*.do
*.o
*.o.tmp
*.obj
*.so
*.dylib
*.dSYM
*.h.gen
*.jl.cov
*.jl.*.cov
*.jl.mem
*.jl.*.mem
*.ji

/perf*
.DS_Store
.idea/*
.vscode/*
*.heapsnapshot
.cache
# Buildkite: Ignore the entire .buildkite directory
/.buildkite

# Builtkite: json test data
/test/results.json

# Buildkite: Ignore the unencrypted repo_key
repo_key

# Buildkite: Ignore any agent keys (public or private) we have stored
agent_key*
back to top