github_notes
Table of Contents
favorite configuration
show private contributions on the github profile
- Profile icon at the top right → Settings → Contributions & Activity → “Include private contributions on my profile” → check → “Update preferences”
hide achievements on the github profile
- Profile icon at the top right → Settings → Profile Settings → “Show Achievements on my profile” → uncheck → “Update preferences”
dummy
links I came across
- Verifying your email address (docs.github.com)
- Creating a personal access token (docs.github.com)
- Token authentication requirements for Git operations (github.blog)
- Beginning August 13, 2021, we will no longer accept account passwords when authenticating Git operations on GitHub.com.
useful links
code search
searching code
search in a particular file
Use
filename:.travis.yml
for example
python unittest filename:.travis.yml
exclude a repository from search results
Add
-repo:user_name/repo_name
to the search string.
Ref:
search issues
search issues filed by a user
For your own issues
https://github.com/issues
For other users, there are two possible approaches.
Solution 1:
https://github.com/issues?q=is%3Aopen+is%3Aissue+author%3Ausername+archived%3Afalse+
For example
https://github.com/issues?q=is%3Aopen+is%3Aissue+author%3AKamarajuKusumanchi+archived%3Afalse+
Solution 2:
is:issue is:open author:$author
for example
is:issue is:open author:kamarajukusumanchi
github_notes.txt · Last modified: 2023/05/23 21:43 by raju