* red
* yellow
* blue
* black
* white
All of the examples that specify a search are searching for foo:
- Search GitHub:
- Search GitHub: https://docs.github.com/en/search-github
- Search GitHub wikis for a specific term: https://github.com/search?type=code&q=foo
- Search GitHub wikis for a specific term: https://github.com/search?type=discussions&q=foo
- Search GitHub wikis for a specific term: https://github.com/search?type=issues&q=foo
- Search GitHub wikis for a specific term: https://github.com/search?type=wikis&q=foo
- CLIPBOARD:
- This contains copied data.
- Copy data by selecting text and pressing Ctrl+c or right-clicking and choosing copy from the context menu.
- Paste data by pressing Ctrl+v or pressing Shift+Insert or right-clicking the mouse and choosing paste to paste.
- AutoKey's
clipboard.get_clipboard()
andclipboard.fill_clipboard()
API calls can access this.
- PRIMARY:
- This contains selected data.
Import a project onto GitHub.
- Before you do anything else, make a backup of your local project!
- Check through all the folders in your local project and if any of them don't have any files in them, add a file to them. This matters when it comes time to push the changes to GitHub, because the push command won't send empty directories. A common practice is to put the empty .gitkeep file into empty directories.
- Grab all available operating-system updates.
- Update the apt database:
sudo apt update
- Configure your git username in place of John Doe's:
git config --global user.name "John"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
######################################################################## | |
# How to create a YAML issue template form in your repository # | |
######################################################################## | |
# To use a YAML issue form in your repository, you must create a new | |
# file and add it to the .github/ISSUE_TEMPLATE folder in your | |
# repository by typing the full path to the new file in when prompted | |
# for a new file's name. | |
# | |
# If, for example, you wanted to create the bug.yaml form to add to your |
NewerOlder