2015-10-07 129 views
0

假設我想在Linux Kernel中找到某個貢獻者的提交。 https://github.com/torvalds/linux/commits/master在GitHub上查找作者沒有GitHub帳戶的提交

例如,有a recent commit安娜·舒馬克創作的(我把最近提交的未通過GitHub的帳戶撰寫當前歷史)。

關於該主題的其他一些SO問題建議使用https://github.com/torvalds/linux/commits/master?author=AUTHOR來查找同一作者的更多提交。

但是:

這是Github的一個缺失功能​​嗎?我做錯了嗎?

P.S.我知道如何使用git命令行工具來完成此操作。我特意尋找與Github做到這一點的方法,因爲我希望能夠生成一個鏈接到搜索,以便其他人可以查看網絡上的結果。

+0

老闆,請接受答案,如果答案可以幫助你! –

回答

5

您可以在author參數中傳遞用戶名或電子郵件地址。如您注意到的,使用?author=torvalds可以提供提交。

由於Anna沒有GitHub帳戶,您可以使用她的電子郵件。但如何找到知道提交的電子郵件?

擁有commit url(看起來像這樣:https://github.com/torvalds/linux/commit/39d0d3bdf7bab3021a31e501172ac0f18947f9b3),最後附加.patch片段。你應該得到類似this

https://github.com/torvalds/linux/commit/39d0d3bdf7bab3021a31e501172ac0f18947f9b3.patch

的迴應是這樣的:

From 39d0d3bdf7bab3021a31e501172ac0f18947f9b3 Mon Sep 17 00:00:00 2001 
From: Anna Schumaker <[email protected]> 
Date: Mon, 5 Oct 2015 16:43:26 -0400 
Subject: [PATCH] NFS: Fix a tracepoint NULL-pointer dereference 

Running xfstest generic/013 with the tracepoint nfs:nfs4_open_file 
enabled produces a NULL-pointer dereference when calculating fileid and 
filehandle of the opened file. Fix this by checking if state is NULL 
before trying to use the inode pointer. 

Reported-by: Olga Kornievskaia <[email protected].edu> 
Signed-off-by: Anna Schumaker <[email protected]> 
Signed-off-by: Trond Myklebust <[email protected]> 
--- 
fs/nfs/nfs4trace.h | 2 +- 
1 file changed, 1 insertion(+), 1 deletion(-) 

diff --git a/fs/nfs/nfs4trace.h b/fs/nfs/nfs4trace.h 
index 28df12e..671cf68 100644 
--- a/fs/nfs/nfs4trace.h 
+++ b/fs/nfs/nfs4trace.h 
@@ -409,7 +409,7 @@ DECLARE_EVENT_CLASS(nfs4_open_event, 
      __entry->flags = flags; 
      __entry->fmode = (__force unsigned int)ctx->mode; 
      __entry->dev = ctx->dentry->d_sb->s_dev; 
-   if (!IS_ERR(state)) 
+   if (!IS_ERR_OR_NULL(state)) 
       inode = state->inode; 
      if (inode != NULL) { 
       __entry->fileid = NFS_FILEID(inode); 

你在你的作者姓名和電子郵件地址的第二行看到的。現在,知道電子郵件地址,你可以fetch person's commits in that repository

https://github.com/torvalds/linux/[email protected] 
0

好吧,一次又一次,解決問題的最好方法是公開宣佈我不知道如何解決它......立即發佈問題後,我意識到我沒有試過只搜索電子郵件:

https://github.com/torvalds/linux/commits/[email protected]

給出了預期的效果。

+0

我加了一個更詳細的答案。也許它會對後代有用。 :) –

+0

@jkff,老闆,請接受答案,如果答案可以幫助你!因爲對方已經努力提供詳細的答案,而你的只是一個可能會及時腐爛的鏈接。 –

+0

完成,謝謝提醒! – jkff