This is guide about how to configure multiple SSH keys for some Git host websites such as Github, Gitlab, among others.
π
name: Flutter CI
on:
push:
branches:
- main
pull_request:
branches:
- main
name: Flutter CI
on:
push:
branches:
- main
jobs:
build:
create a file ending with .desktop . config and add below text in the file
[Desktop Entry]
Version=1.0
Name=Name of the application
Comment=text you want to show when hovering above the icon
Exec=Path of the executable file %U
Icon=Path of the image
Terminal=false
StartupWMClass=name of application
- to generate a key
ssh-keygen -t ed25519 -C "[email protected]" -f ./key_name
-
add the file in
home/.shh/ -
add this in
.shh/config
featβ a new feature is introduced with the changesfixβ a bug fix has occurredchoreβ changes that do not relate to a fix or feature and don't modify src or test files (for example updating dependencies)refactorβ refactored code that neither fixes a bug nor adds a featuredocsβ updates to documentation such as a the README or other markdown filesstyleβ changes that do not affect the meaning of the code, likely related to code formatting such as white-space, missing semi-colons, and so on.testβ including new or correcting previous testsperfβ performance improvementsciβ continuous integration relatedbuildβ changes that affect the build system or external dependencies
Code is clean if it can be understood easily β by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
- Follow standard conventions.
- Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
- Boy scout rule. Leave the campground cleaner than you found it.
- Always find root cause. Always look for the root cause of a problem.
- add below command in package.json
"homepage": "https://narayann7.github.io/app-name"
// url = https:// + <username> .github.io/ <app-name>
- install
npm i gh-pages -D - add below command in scripts in package.json
"predeploy": "npm run build",
NewerOlder