change references to the github repo location (#7479)
This commit is contained in:
parent
1978f996d8
commit
9bbf768d3c
2
BUGS
2
BUGS
@ -1 +1 @@
|
|||||||
Please check https://github.com/antirez/redis/issues
|
Please check https://github.com/redis/redis/issues
|
||||||
|
@ -205,8 +205,8 @@ source distribution.
|
|||||||
Please see the [CONTRIBUTING][2] file in this source distribution for more
|
Please see the [CONTRIBUTING][2] file in this source distribution for more
|
||||||
information.
|
information.
|
||||||
|
|
||||||
[1]: https://github.com/antirez/redis/blob/unstable/COPYING
|
[1]: https://github.com/redis/redis/blob/unstable/COPYING
|
||||||
[2]: https://github.com/antirez/redis/blob/unstable/CONTRIBUTING
|
[2]: https://github.com/redis/redis/blob/unstable/CONTRIBUTING
|
||||||
|
|
||||||
Redis internals
|
Redis internals
|
||||||
===
|
===
|
||||||
@ -236,7 +236,7 @@ Inside the root are the following important directories:
|
|||||||
|
|
||||||
* `src`: contains the Redis implementation, written in C.
|
* `src`: contains the Redis implementation, written in C.
|
||||||
* `tests`: contains the unit tests, implemented in Tcl.
|
* `tests`: contains the unit tests, implemented in Tcl.
|
||||||
* `deps`: contains libraries Redis uses. Everything needed to compile Redis is inside this directory; your system just needs to provide `libc`, a POSIX compatible interface and a C compiler. Notably `deps` contains a copy of `jemalloc`, which is the default allocator of Redis under Linux. Note that under `deps` there are also things which started with the Redis project, but for which the main repository is not `antirez/redis`.
|
* `deps`: contains libraries Redis uses. Everything needed to compile Redis is inside this directory; your system just needs to provide `libc`, a POSIX compatible interface and a C compiler. Notably `deps` contains a copy of `jemalloc`, which is the default allocator of Redis under Linux. Note that under `deps` there are also things which started with the Redis project, but for which the main repository is not `redis/redis`.
|
||||||
|
|
||||||
There are a few more directories but they are not very important for our goals
|
There are a few more directories but they are not very important for our goals
|
||||||
here. We'll focus mostly on `src`, where the Redis implementation is contained,
|
here. We'll focus mostly on `src`, where the Redis implementation is contained,
|
||||||
|
@ -1569,7 +1569,7 @@ void sigsegvHandler(int sig, siginfo_t *info, void *secret) {
|
|||||||
serverLogRaw(LL_WARNING|LL_RAW,
|
serverLogRaw(LL_WARNING|LL_RAW,
|
||||||
"\n=== REDIS BUG REPORT END. Make sure to include from START to END. ===\n\n"
|
"\n=== REDIS BUG REPORT END. Make sure to include from START to END. ===\n\n"
|
||||||
" Please report the crash by opening an issue on github:\n\n"
|
" Please report the crash by opening an issue on github:\n\n"
|
||||||
" http://github.com/antirez/redis/issues\n\n"
|
" http://github.com/redis/redis/issues\n\n"
|
||||||
" Suspect RAM error? Use redis-server --test-memory to verify it.\n\n"
|
" Suspect RAM error? Use redis-server --test-memory to verify it.\n\n"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ def commands
|
|||||||
require "json"
|
require "json"
|
||||||
require "uri"
|
require "uri"
|
||||||
|
|
||||||
url = URI.parse "https://raw.githubusercontent.com/antirez/redis-doc/master/commands.json"
|
url = URI.parse "https://raw.githubusercontent.com/redis/redis-doc/master/commands.json"
|
||||||
client = Net::HTTP.new url.host, url.port
|
client = Net::HTTP.new url.host, url.port
|
||||||
client.use_ssl = true
|
client.use_ssl = true
|
||||||
response = client.get url.path
|
response = client.get url.path
|
||||||
|
@ -30,6 +30,6 @@ append template [exec git log $branch~$count..$branch "--format=format:%an in co
|
|||||||
|
|
||||||
#Older, more verbose version.
|
#Older, more verbose version.
|
||||||
#
|
#
|
||||||
#append template [exec git log $branch~30..$branch "--format=format:+-------------------------------------------------------------------------------%n| %s%n| By %an, %ai%n+--------------------------------------------------------------------------------%nhttps://github.com/antirez/redis/commit/%H%n%n%b" --stat]
|
#append template [exec git log $branch~30..$branch "--format=format:+-------------------------------------------------------------------------------%n| %s%n| By %an, %ai%n+--------------------------------------------------------------------------------%nhttps://github.com/redis/redis/commit/%H%n%n%b" --stat]
|
||||||
|
|
||||||
puts $template
|
puts $template
|
||||||
|
Loading…
Reference in New Issue
Block a user