Skip to content
Advanced search
Cheat sheet

Search cheat sheet

GitHub’s search supports a variety of different operations. Here’s a quick cheat sheet for some of the common searches.

For more information, visit our search help section.

Basic search

This search Finds repositories with…
cat stars:>100 Find cat repositories with greater than 100 stars.
user:defunkt Get all repositories from the user defunkt.
tom location:"San Francisco, CA" Find all tom users in "San Francisco, CA".
join extension:coffee Find all instances of join in code with coffee extension.
NOT cat Excludes all results containing cat.

Repository search

Repository search looks through the projects you have access to on GitHub. You can also filter the results:

This search Finds repositories with…
cat stars:>100 Find cat repositories with greater than 100 stars.
user:defunkt Get all repositories from the user defunkt.
pugs pushed:>2013-01-28 Pugs repositories pushed to since Jan 28, 2013.
node.js forks:<200 Find all node.js repositories with less than 200 forks.
jquery size:1024..4089 Find jquery repositories between the sizes 1024 and 4089 kB.
gitx fork:true Repository search includes forks of gitx.
gitx fork:only Repository search returns only forks of gitx.

Code search

Code search looks through the files hosted on GitHub. You can also filter the results:

This search Finds repositories with…
install repo:charles/privaterepo Find all instances of install in code from the repository charles/privaterepo.
shogun user:heroku Find references to shogun from all public heroku repositories.
join extension:coffee Find all instances of join in code with coffee extension.
system size:>1000 Find all instances of system in code of file size greater than 1000kbs.
examples path:/docs/ Find all examples in the path /docs/.
replace fork:true Search replace in the source code of forks.

Issue search

Issue search looks through issues and pull requests on GitHub. You can also filter the results:

This search Finds issues…
encoding user:heroku Encoding issues across the Heroku organization.
cat is:open Find cat issues that are open.
strange comments:>42 Issues with more than 42 comments.
hard label:bug Hard issues labeled as a bug.
author:mojombo All issues authored by mojombo.
mentions:tpope All issues mentioning tpope.
assignee:rtomayko All issues assigned to rtomayko.
exception created:>2012-12-31 Created since the beginning of 2013.
exception updated:<2013-01-01 Last updated before 2013.

User search

User search finds users with an account on GitHub. You can also filter the results:

This search Finds repositories with…
fullname:"Linus Torvalds" Find users with the full name "Linus Torvalds".
tom location:"San Francisco, CA" Find all tom users in "San Francisco, CA".
chris followers:100..200 Find all chris users with followers between 100 and 200.
ryan repos:>10 Find all ryan users with more than 10 repositories.
51 linked_list_t *other_types;
52
53 /**
54 * Prefer types sent by peer
55 */
56 bool prefer_peer;
57
58 /**
59 * The proxied EAP method
60 */
61 eap_method_t *method;
62 };
63
64 /**
65 * Compare two eap_vendor_type_t objects
66 */
67 static bool entry_matches(eap_vendor_type_t *item, eap_vendor_type_t *other)
C
Showing the top three matches Last indexed Jun 25, 2018
17 #include "eap_ttls_avp.h"
18
19 #include <utils/debug.h>
20 #include <daemon.h>
21
22 #include <sa/eap/eap_method.h>
23 #include <sa/eap/eap_inner_method.h>
24
25 typedef struct private_eap_ttls_server_t private_eap_ttls_server_t;
26
27 /**
28 * Private data of an eap_ttls_server_t object.
C
Showing the top match Last indexed Jun 25, 2018
65 * Outer phase 1 EAP method
66 */
67 eap_method_t *ph1_method;
68
69 /**
70 * Current phase 2 EAP method
71 */
72 eap_method_t *ph2_method;
73
74 /**
75 * Pending outbound EAP message
76 */
77 eap_payload_t *out;
78
79 /**
80 * AVP handler
C
Showing the top six matches Last indexed Jun 25, 2018
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * for more details.
14 */
15
16 /**
17 * @defgroup eap_method eap_method
18 * @{ @ingroup eap
19 */
20
21 #ifndef EAP_METHOD_H_
22 #define EAP_METHOD_H_
23
24 typedef struct eap_method_t eap_method_t;
25 typedef enum eap_role_t eap_role_t;
C
Showing the top six matches Last indexed Feb 11, 2020
89 static bool set_pss_params(private_private_key_t *this, JNIEnv *env,
90 jobject jsignature, rsa_pss_params_t *pss)
91 {
92 jmethodID method_id;
93 jclass cls;
94 jstring jhash, jmgf1;
99 cls = (*env)->FindClass(env, "java/security/spec/MGF1ParameterSpec");
100 if (!cls)
101 {
102 return FALSE;
103 }
104 method_id = (*env)->GetMethodID(env, cls, "<init>", "(Ljava/lang/String;)V");
C
Showing the top two matches Last indexed Oct 26, 2018
32 * public interface
33 */
34 vpnservice_builder_t public;
35
36 /**
37 * Java object
38 */
39 jobject builder;
40 };
41
42 METHOD(vpnservice_builder_t, add_address, bool,
45 JNIEnv *env;
46 jmethodID method_id;
47 jstring str;
48 char buf[INET6_ADDRSTRLEN];
49 int prefix;
C
Showing the top two matches Last indexed Jun 25, 2018
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * for more details.
14 */
15
16 /**
17 * @defgroup xauth_method xauth_method
18 * @{ @ingroup xauth
19 */
20
21 #ifndef XAUTH_METHOD_H_
22 #define XAUTH_METHOD_H_
23
24 typedef struct xauth_method_t xauth_method_t;
C
Showing the top six matches Last indexed Jun 25, 2018
19 #include <utils/debug.h>
20 #include <daemon.h>
21 #include <radius_message.h>
22 #include <sa/eap/eap_method.h>
49 bool start_phase2;
50
51 /**
52 * Current phase 2 EAP method
53 */
54 eap_method_t *method;
55
56 /**
57 * Pending outbound EAP message
C
Showing the top four matches Last indexed Jun 25, 2018
53 uint8_t reserved_byte[3];
54
55 /**
56 * Length of this payload.
57 */
58 uint16_t payload_length;
59
60 /**
61 * Method of the AUTH Data.
62 */
63 uint8_t auth_method;
64
65 /**
66 * The contained auth data value.
67 */
68 chunk_t auth_data;
C
Showing the top two matches Last indexed Jun 25, 2018
45 * Outer phase 1 EAP method
46 */
47 eap_method_t *ph1_method;
48
49 /**
50 * Current phase 2 EAP method
51 */
52 eap_method_t *ph2_method;
53
54 /**
55 * Pending outbound EAP message
56 */
57 eap_payload_t *out;
58
59 /**
60 * AVP handler
C
Showing the top six matches Last indexed Jun 25, 2018
You can’t perform that action at this time.