Типы настроек (property_type):
--system
)--global
)Для репозитория (--local
)
$ git config --global user.name [name]
$ git config --global user.email [email]
$ git config --list
Настройки снизу переопределяют те, что вверху
$ git config --show-origin [property_name]
$ git config [property_type] --unset [property_name]
$ git init
$ git clone [url]
Чтобы клонировать в папку с произвольным именем:
$ git clone [url] [folder_name]
$ git remote add [repository_name] [url]
$ git remote -v
$ git status
$ git add [file or folder]
$ git rm [file or folder]
$ git mv [from] [to]