github

#Tooling

#Code Reviews

  1. Embeding code snippets

  2. butuzov/deadlinks#76 to issue

  3. @butuzov user itself

  4. suggestions

    code goes here.
    
Keyword Description Example
path:pdf In Path path:docker-compose.yaml kafka

#Searching for alive people

Original Code posted by Denis Dinkevich in telegram sourcing comunity.

github.bookmarkelet.js

#Legacy

https://github.com/search

Most of tips can be found on official page.

Keyword Description Example
filename Search by Filename filename:serverless.yml
in:file Search in Files in:file func main
in:path Search in Path in:path tips.pdf
extension:pdf Search by Extension in:path extension:pdf tips

#Examples

#Usage of GITHUB_TOKEN

git pull https://${{ secrets.GIT_TOKEN }}:x-oauth-basic@github.com/susomejias/portfolio.git master

git init
git remote add origin https://${{ secrets.GIT_TOKEN }}:x-oauth-basic@github.com/$user/$repo.git
git pull
...
git add -A
git commit --allow-empty -m "${DEST_MESSAGE}"
git push -q origin master