From: Hui Yiqun <huiyiqun@gmail.com>
To: git@vger.kernel.org
Cc: gitster@pobox.com, pickfire@riseup.net, peff@peff.net,
Hui Yiqun <huiyiqun@gmail.com>
Subject: [PATCH v2/GSoC 3/4] git-credential-cache: put socket to xdg-compatible path
Date: Fri, 18 Mar 2016 00:48:45 +0800 [thread overview]
Message-ID: <1458233326-7735-3-git-send-email-huiyiqun@gmail.com> (raw)
In-Reply-To: <1458233326-7735-1-git-send-email-huiyiqun@gmail.com>
move .git-credential-cache/socket to xdg_runtime_dir("credential-cache.sock")
Signed-off-by: Hui Yiqun <huiyiqun@gmail.com>
---
credential-cache.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/credential-cache.c b/credential-cache.c
index f4afdc6..40d838b 100644
--- a/credential-cache.c
+++ b/credential-cache.c
@@ -105,7 +105,7 @@ int main(int argc, const char **argv)
op = argv[0];
if (!socket_path)
- socket_path = expand_user_path("~/.git-credential-cache/socket");
+ socket_path = xdg_runtime_dir("credential-cache.sock");
if (!socket_path)
die("unable to find a suitable socket path; use --socket");
--
2.7.3
next prev parent reply other threads:[~2016-03-17 16:49 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-17 16:48 [PATCH v2/GSoC 1/4] path.c: implement strbuf_mkpath() Hui Yiqun
2016-03-17 16:48 ` [PATCH v2/GSoC 2/4] path.c: implement xdg_runtime_dir() Hui Yiqun
2016-03-17 18:13 ` Jeff King
2016-03-17 16:48 ` Hui Yiqun [this message]
2016-03-17 16:48 ` [PATCH v2/GSoC 4/4] t0301: test credential-cache support of XDG_RUNTIME_DIR Hui Yiqun
2016-03-17 18:08 ` Jeff King
2016-03-18 4:38 ` 惠轶群
2016-03-18 5:01 ` Jeff King
2016-03-18 5:22 ` 惠轶群
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1458233326-7735-3-git-send-email-huiyiqun@gmail.com \
--to=huiyiqun@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=peff@peff.net \
--cc=pickfire@riseup.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).