Open Telegram and search for @BotFather user and message them the following:
You
/newbot
BotFather
| # https://cloud.google.com/sdk/gcloud/reference/topic/gcloudignore | |
| # | |
| # This file specifies files that are *not* uploaded to Google Cloud Platform | |
| # using gcloud. It follows the same syntax as .gitignore, with the addition of | |
| # "#!include" directives (which insert the entries of the given .gitignore-style | |
| # file at that point). | |
| # | |
| # For more information, run: | |
| # $ gcloud topic gcloudignore | |
| # |
| import os | |
| def addToClipBoard(text): | |
| command = 'echo ' + text.strip() + '| clip' | |
| os.system(command) | |
| #example | |
| addToClipBoard('Hello') |
| # Add the following lines to your .git/config to set other credentials than the default ones used in [Fork Git Client](http://fork.dev/) | |
| [credential "https://github.com/username/repository.git"] | |
| helper = manager | |
| username = username | |
| useHttpPath = true |
| import pytest | |
| class Helpers: | |
| @staticmethod | |
| def help_me(): | |
| return "no" | |
| @pytest.fixture |
After you add your public key to your account, you can sign individual commits manually, or configure Git to default to signed commits.
Add -S flag to any commit you want to sign:
git commit -S -m "My commit message"
Enter the passphrase of your GPG key when asked.