From bf4e4f7980774dc76e7ade23c0d697271170eefc Mon Sep 17 00:00:00 2001 From: Darkstar-agent Date: Tue, 22 Sep 2020 08:26:08 +0300 Subject: [PATCH] ongoing additions, changes, and fixes --- git-and-github-cheat-sheet.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/git-and-github-cheat-sheet.adoc b/git-and-github-cheat-sheet.adoc index 8243a5b..5eaccda 100644 --- a/git-and-github-cheat-sheet.adoc +++ b/git-and-github-cheat-sheet.adoc @@ -10,7 +10,7 @@ | Clone remote repository, optionally renaming the local copy of it. |*git config --system * -|Set configuration parameters for all users at the local host, requires root permissions. Saves in the `/etc/gitconfig`. Some params (when setting on the terminal, separate paramater value from name with whitespace): +|Set configuration parameters for all users at the local host, requires root permissions, saves in the `/etc/gitconfig`. Some params (when setting on the terminal, separate paramater value from name with whitespace): - `core.editor` Editor to use to enter comments when committing. E.g. `git config --system core.editor vim`. @@ -23,10 +23,10 @@ |*git config --global * -|Set for ALL repositories of a user on the local host. Saves in the `~/.gitconfig` or `~/.config/git/config`. +|Set for ALL repositories of a user on the local host, saves in the `~/.gitconfig` or `~/.config/git/config`. |*git config --local * -|(default) Set for a specific repository only, should be run when inside this repository. Saves in the `.git/config` inside the repository. +|(default) Set for a specific repository only, should be run when inside this repository, saves in the `.git/config` inside the repository. |*git config --list --show-origin* |View all the settings with their origins.