Русские видео

Сейчас в тренде

Иностранные видео


Скачать с ютуб Introduction to Git - Branching and Merging в хорошем качестве

Introduction to Git - Branching and Merging 6 лет назад


Если кнопки скачивания не загрузились НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием, пожалуйста напишите в поддержку по адресу внизу страницы.
Спасибо за использование сервиса savevideohd.ru



Introduction to Git - Branching and Merging

Introduction to Git - Branching and Merging. Twitter: @davidmahler LinkedIn:   / davidmahler   Introduction to Git - Core Concepts (recommended prerequisite):    • Introduction to Git - Core Concepts   Reference: https://git-scm.com/book/en/v2 Commands Used: git log = git history git log --all --decorate --oneline --graph = commit history graph git branch (branch-name) = create a branch git checkout (branch-name) = checkout a branch/move head pointer git commit -a -m "commit message" = commit all modified and tracked files in on command (bypass separate 'git add' command) git diff master..SDN = diff between 2 branches git merge (branch-name) = merge branches (fast-forward and 3-way merges) git branch --merged = see branches merged into the current branch git branch -d (branch-name) = delete a branch, only if already merged git branch -D (branch-name) = delete a branch, including if not already merged (exercise caution here) git merge --abort = abort a merge during a merge conflict situation git checkout (commit-hash) = checkout a commit directly, not through a branch, results in a detached HEAD state git stash = create a stash point git stash list = list stash points git stash list -p = list stash points and show diffs per stash git stash apply = apply most recent stash git stash pop = apply most recent stash, and remove it from saved stashes git stash apply (stash reference) = apply a specific stash point git stash save "(description)" = create a stash point, be more descriptive

Comments