diff --git a/BUGS b/BUGS index a8e936892..7af259340 100644 --- a/BUGS +++ b/BUGS @@ -1 +1 @@ -Please check https://github.com/antirez/redis/issues +Please check https://github.com/redis/redis/issues diff --git a/README.md b/README.md index c08013416..55537e01f 100644 --- a/README.md +++ b/README.md @@ -205,8 +205,8 @@ source distribution. Please see the [CONTRIBUTING][2] file in this source distribution for more information. -[1]: https://github.com/antirez/redis/blob/unstable/COPYING -[2]: https://github.com/antirez/redis/blob/unstable/CONTRIBUTING +[1]: https://github.com/redis/redis/blob/unstable/COPYING +[2]: https://github.com/redis/redis/blob/unstable/CONTRIBUTING Redis internals === @@ -236,7 +236,7 @@ Inside the root are the following important directories: * `src`: contains the Redis implementation, written in C. * `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 here. We'll focus mostly on `src`, where the Redis implementation is contained, diff --git a/src/debug.c b/src/debug.c index d79226bf2..ca113bcaa 100644 --- a/src/debug.c +++ b/src/debug.c @@ -1569,7 +1569,7 @@ void sigsegvHandler(int sig, siginfo_t *info, void *secret) { serverLogRaw(LL_WARNING|LL_RAW, "\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" -" 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" ); diff --git a/utils/generate-command-help.rb b/utils/generate-command-help.rb index 29acef69d..e57acf4b9 100755 --- a/utils/generate-command-help.rb +++ b/utils/generate-command-help.rb @@ -53,7 +53,7 @@ def commands require "json" 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.use_ssl = true response = client.get url.path diff --git a/utils/releasetools/changelog.tcl b/utils/releasetools/changelog.tcl index 06e38ba99..2288794bb 100755 --- a/utils/releasetools/changelog.tcl +++ b/utils/releasetools/changelog.tcl @@ -30,6 +30,6 @@ append template [exec git log $branch~$count..$branch "--format=format:%an in co #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