From 8af3a1be8e947eebd573943a1b2e0716d27e687b Mon Sep 17 00:00:00 2001 From: hau Date: Mon, 30 Nov 2020 16:40:27 +0700 Subject: [PATCH] better git, prettier --- .gitignore | 2 ++ Applications/Essential/curl.md | 1 + Applications/Essential/git.md | 3 +++ package-lock.json | 3 +++ 4 files changed, 9 insertions(+) create mode 100644 .gitignore create mode 100644 package-lock.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..419a5da --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Node +node_modules/ diff --git a/Applications/Essential/curl.md b/Applications/Essential/curl.md index 08f28f3..9919b68 100644 --- a/Applications/Essential/curl.md +++ b/Applications/Essential/curl.md @@ -5,6 +5,7 @@ | Arch Linux | `curl` | | Ubuntu | `curl` | | Homebrew | `curl` | +| Fedora | `curl` | Add credentials, edit `~/.netrc`: diff --git a/Applications/Essential/git.md b/Applications/Essential/git.md index 26e6083..7279ae0 100644 --- a/Applications/Essential/git.md +++ b/Applications/Essential/git.md @@ -7,8 +7,11 @@ Aliases: ```sh git config --global alias.br branch git config --global alias.ci commit +git config --global alias.cl clone git config --global alias.co checkout git config --global alias.df diff +git config --global alias.pl pull +git config --global alias.ps push git config --global alias.st status git config --global alias.sw switch ``` diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..48e341a --- /dev/null +++ b/package-lock.json @@ -0,0 +1,3 @@ +{ + "lockfileVersion": 1 +}