Skip to content

Instantly share code, notes, and snippets.

View Evomatic's full-sized avatar
Refuelling

Evan Trujillo Evomatic

Refuelling
View GitHub Profile
@Evomatic
Evomatic / list-of-curl-options.txt
Created July 4, 2023 02:05 — forked from eneko/list-of-curl-options.txt
List of `curl` options
$ curl --help
Usage: curl [options...] <url>
--abstract-unix-socket <path> Connect via abstract Unix domain socket
--alt-svc <file name> Enable alt-svc with this cache file
--anyauth Pick any authentication method
-a, --append Append to target file when uploading
--basic Use HTTP Basic Authentication
--cacert <file> CA certificate to verify peer against
--capath <dir> CA directory to verify peer against
-E, --cert <certificate[:password]> Client certificate file and password

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@Evomatic
Evomatic / .gitconfig
Created August 2, 2022 23:08 — forked from natescode/.gitconfig
Git Aliases to make GIT easier to work with
[user]
email = your_email
name = your_username
[alias]
# git clone
cl = !git clone
# Git shallow clone for large repos
clq= !git clone --depth=1
s = status
co = checkout