Learning GIT Masterclass - Lesson 3 - Configuring your GIT Identity - Setting your username & email
Learning GIT Masterclass - Lesson 3 - Configuring your GIT Identity - Setting your username & email
Now that you have Git up and running on your system, you might want to do a couple of things to customise your Git environment. You ought to do these things only once per given computer; they’ll stick around between upgrades. You can also change them at any time by running through the commands again.
Git comes equipped with a special tool called git config that lets you set and retrieve your configuration variables that how Git looks and operates.
Git configuration (initial configuration)
# your name and email address
$ git config --global user.name "Eduard"
$ git config --global user.email [email protected]
# more optional git config stuff
$ git config --global core.editor vim
$ git config --global merge.tool vimdiff
# GIT Configuration Files
GIT also write to this file:
/etc/gitconfig file: Contains values for every user on the system and all their repositories.
Global settings are put in this file:
~/.gitconfig file: Contains values for the same user on the system and all their repositories.
Local settings are placed in the Git configuration file in your current Git repository. See this file in your repository:
.git/config file: Contains values for only a user on the user and only for the local repository
Each level overrides values in the previous level, so values in .git/config trump those in /etc/gitconfig.
You can check your Git configuration using commands like these:
# show all git configurations
$ git config --list
# show a specific key
$ git config user.name
Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «Learning GIT Masterclass - Lesson 3 - Configuring your GIT Identity - Setting your username & email», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.
Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.
Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!
Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.