Skip to content

Commit 62f8583

Browse files
committed
change references to the github repo location (#7479)
(cherry picked from commit 9bbf768)
1 parent 3155adb commit 62f8583

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Diff for: BUGS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Please check https://github.com/antirez/redis/issues
1+
Please check https://github.com/redis/redis/issues

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ source distribution.
205205
Please see the [CONTRIBUTING][2] file in this source distribution for more
206206
information.
207207

208-
[1]: https://github.com/antirez/redis/blob/unstable/COPYING
209-
[2]: https://github.com/antirez/redis/blob/unstable/CONTRIBUTING
208+
[1]: https://github.com/redis/redis/blob/unstable/COPYING
209+
[2]: https://github.com/redis/redis/blob/unstable/CONTRIBUTING
210210

211211
Redis internals
212212
===
@@ -236,7 +236,7 @@ Inside the root are the following important directories:
236236

237237
* `src`: contains the Redis implementation, written in C.
238238
* `tests`: contains the unit tests, implemented in Tcl.
239-
* `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`.
239+
* `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`.
240240

241241
There are a few more directories but they are not very important for our goals
242242
here. We'll focus mostly on `src`, where the Redis implementation is contained,

Diff for: src/debug.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1569,7 +1569,7 @@ void sigsegvHandler(int sig, siginfo_t *info, void *secret) {
15691569
serverLogRaw(LL_WARNING|LL_RAW,
15701570
"\n=== REDIS BUG REPORT END. Make sure to include from START to END. ===\n\n"
15711571
" Please report the crash by opening an issue on github:\n\n"
1572-
" http://github.com/antirez/redis/issues\n\n"
1572+
" http://github.com/redis/redis/issues\n\n"
15731573
" Suspect RAM error? Use redis-server --test-memory to verify it.\n\n"
15741574
);
15751575

Diff for: utils/generate-command-help.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def commands
5353
require "json"
5454
require "uri"
5555

56-
url = URI.parse "https://raw.githubusercontent.com/antirez/redis-doc/master/commands.json"
56+
url = URI.parse "https://raw.githubusercontent.com/redis/redis-doc/master/commands.json"
5757
client = Net::HTTP.new url.host, url.port
5858
client.use_ssl = true
5959
response = client.get url.path

Diff for: utils/releasetools/changelog.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ append template [exec git log $branch~$count..$branch "--format=format:%an in co
3030

3131
#Older, more verbose version.
3232
#
33-
#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]
33+
#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]
3434

3535
puts $template

0 commit comments

Comments
 (0)