config level, clone level, PR level

This commit is contained in:
blinry 2021-01-07 17:35:08 +01:00
parent 8a86009e2f
commit 023a98cfae
8 changed files with 110 additions and 2 deletions
resources

View file

@ -4,6 +4,21 @@
"command": "git init",
"description": "Initialize the time machine!"
},
{
"id": "clone",
"command": "git clone ../[remote] .",
"description": "Create your own copy of your friend's repo."
},
{
"id": "config-name",
"command": "git config --global user.name [string]",
"description": "Set your name."
},
{
"id": "config-email",
"command": "git config --global user.email [string]",
"description": "Set your email address."
},
{
"id": "checkout",
"command": "git checkout [commit, ref]",