mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +08:00
37 lines
1.0 KiB
Markdown
37 lines
1.0 KiB
Markdown
---
|
|
title: Technical Links
|
|
---
|
|
|
|
Collection of links to various git related documentation,
|
|
|
|
https://gist.github.com/schacon/6092633
|
|
|
|
https://github.com/git/git/blob/master/Documentation/technical/pack-protocol.txt
|
|
|
|
https://github.com/git/git/blob/master/Documentation/technical/http-protocol.txt
|
|
|
|
https://github.com/git/git/blob/master/Documentation/technical/protocol-capabilities.txt
|
|
|
|
https://github.com/git/git/blob/master/Documentation/technical/pack-format.txt
|
|
|
|
https://github.com/git/git/tree/master/Documentation/technical
|
|
|
|
http://schacon.github.io/gitbook/7_the_packfile.html
|
|
|
|
http://alblue.bandlem.com/2011/08/git-tip-of-week-objects.html
|
|
|
|
https://git-scm.herokuapp.com/book/en/Git-Internals-Transfer-Protocols
|
|
|
|
https://github.com/git/git/blob/master/builtin/receive-pack.c
|
|
|
|
http://stefan.saasen.me/articles/git-clone-in-haskell-from-the-bottom-up/
|
|
|
|
```bash
|
|
set GIT_CURL_VERBOSE=1
|
|
$env:GIT_CURL_VERBOSE=1
|
|
$env:GIT_TRACE=1
|
|
git config --global http.proxy %HTTP_PROXY%
|
|
git config --global --unset http.proxy
|
|
git config --global http.sslVerify false
|
|
```
|