Презентация Git python core онлайн

На нашем сайте вы можете скачать и просмотреть онлайн доклад-презентацию на тему Git python core абсолютно бесплатно. Урок-презентация на эту тему содержит всего 25 слайдов. Все материалы созданы в программе PowerPoint и имеют формат ppt или же pptx. Материалы и темы для презентаций взяты из открытых источников и загружены их авторами, за качество и достоверность информации в них администрация сайта не отвечает, все права принадлежат их создателям. Если вы нашли то, что искали, отблагодарите авторов - поделитесь ссылкой в социальных сетях, а наш сайт добавьте в закладки.



Оцените!
Оцените презентацию от 1 до 5 баллов!
  • Тип файла:
    ppt / pptx (powerpoint)
  • Всего слайдов:
    25 слайдов
  • Для класса:
    1,2,3,4,5,6,7,8,9,10,11
  • Размер файла:
    6.59 MB
  • Просмотров:
    87
  • Скачиваний:
    2
  • Автор:
    неизвестен



Слайды и текст к этой презентации:

№1 слайд
GIT PYTHON CORE
Содержание слайда: GIT PYTHON CORE

№2 слайд
Agenda Source Control
Содержание слайда: Agenda Source Control Management (SCM) Fundamental Concepts Terms Types of Version Control Systems Git Before start Configuration Basics Work cycle Branches | Merging | Rebasing Practical tasks HomeWork

№3 слайд
SCM Revision control, also
Содержание слайда: SCM Revision control, also known as version control and source control (and an aspect of software configuration management), is the management of changes to documents, computer programs, large web sites, and other collections of information.

№4 слайд
Fundamental Concepts of SCM
Содержание слайда: Fundamental Concepts of SCM Tracking changes Committing Revisions and Change sets Getting updates Conflicts Diffing (or, viewing the differences) Branching and merging

№5 слайд
Main terms Repository Working
Содержание слайда: Main terms Repository Working Copy Merging Revision

№6 слайд
System version control
Содержание слайда: System version control

№7 слайд
GIT Intro Git is a
Содержание слайда: GIT Intro Git – is a distributed revision control system with an emphasis on speed, data integrity, and support for distributed, non-linear workflows. Git was initially designed and developed by Linus Torvalds for Linux kernel development in 2005, and has since become the most widely adopted version control system for software development. Every Git working directory is a full-fledged repository with complete history and full revision tracking capabilities, not dependent on network access or a central server.

№8 слайд
Before start Firstly we need
Содержание слайда: Before start Firstly we need to check if we have a git client software. Download and install git

№9 слайд
If we need to know sth Help
Содержание слайда: If we need to know sth  Help yourself $git help <command> $git <command> --help $man git-<command>

№10 слайд
Let s configure git Git comes
Содержание слайда: Let’s configure git  Git comes with tool called git config Identity $ git config --global user.name “Liubov Koliasa“ $ git config --global user.email lkoliasa@mail.com Editor $ git config --global core.editor notepad.exe Check settings $ git config --list

№11 слайд
Create repository git init
Содержание слайда: Create repository git init – create an empty local repo git clone <URL> – create local repo from remote repo

№12 слайд
GIT basics Git store
Содержание слайда: GIT basics Git store snapshots of file system not differences!!! Almost every operation is local

№13 слайд
Git data transport commands
Содержание слайда: Git data transport commands

№14 слайд
Must know commands! git
Содержание слайда: Must know commands! git status - Show the working tree status git log – Show commit logs git rm – Remove files from the working tree and from the index

№15 слайд
GIT Work Cycle
Содержание слайда: GIT Work Cycle

№16 слайд
Branch A branch represents an
Содержание слайда: Branch A branch represents an independent line of development. Branches serve as an abstraction for the edit/stage/ commit process Commands git branch – list of branches in local repo git branch <name> – create new local branch named “name” git branch –d <name> – delete the branch named “name” git branch –m <name> – rename the current branch to “name”

№17 слайд
Let s imagine
Содержание слайда: Let’s imagine

№18 слайд
Merging
Содержание слайда: Merging

№19 слайд
Rebasing
Содержание слайда: Rebasing

№20 слайд
Team player issue bug fix
Содержание слайда: Team player / issue / bug fix philosophy

№21 слайд
Содержание слайда:

№22 слайд
Tasks Clone repository https
Содержание слайда: Tasks Clone repository https://github.com/kolyasalubov/Lv-367.PythonCore.git Add to file «ZenPython.txt» few lines and commit it to local repository. Push it to remote repository. Make branch and checkout to it Add few lines in the file. Push changes to remote repo. Merge the branch with master Resolve conflicts, if needed View master log.

№23 слайд
HomeWork online course Play
Содержание слайда: HomeWork (online course) Play on site https://try.github.io Please register on Learn Git Branching: http://learngitbranching.js.org/ and play game Clone repo https://github.com/kolyasalubov/Lv-416.PythonCore.git Create branch <your name> Push into this branch your project from HW 1

№24 слайд
References and Sources
Содержание слайда: References and Sources Simplified views: Everyday commands Visual guide to GIT Easy version control with GIT Some videos What is GIT Overview of Branching, Cloning, Pulling, and Merging. Demo of it on Git Bash Merge Conflicts. Git Tagging GIT for small teams Workflow for small teams Advanced philosophy: Advanced programmer guide to GIT Version control SVN and GIT

№25 слайд
THANK YOU FOR ATTENTION
Содержание слайда: THANK YOU FOR ATTENTION

Скачать все slide презентации Git python core одним архивом: