(Create a symlink pytest for py.test)
pytest [options] [file_or_dir] [file_or_dir] ...
Help:
Let suppose I have two github accounts, https://github.com/rahul-office and https://github.com/rahul-personal. Now i want to setup my mac to easily talk to both the github accounts.
NOTE: This logic can be extended to more than two accounts also. :)
The setup can be done in 5 easy steps:
| import { createConnection, getConnection, Entity, getRepository } from "typeorm"; | |
| import { PrimaryGeneratedColumn, Column } from "typeorm"; | |
| @Entity() | |
| export class MyEntity { | |
| @PrimaryGeneratedColumn() | |
| id?: number; | |
| @Column() | |
| name?: string; |
I have two Github accounts: oanhnn (personal) and superman (for work). I want to use both accounts on same computer (without typing password everytime, when doing git push or pull).
Use ssh keys and define host aliases in ssh config file (each alias for an account).
Copy and pasted from: https://mherman.org/blog/managing-multiple-github-accounts/
Let’s look at how to manage multiple Github accounts from one computer. In essence, it’s simply a matter of balancing both your git and ssh configurations - which actually is not as bad as it might seem.
Note: This tutorial is meant for Unix users.
To make a copy of this rubric: