وب سایت تخصصی شرکت فرین
دسته بندی دوره ها

Git and GitHub – The step by step guide for beginners

سرفصل های دوره

Master the essential skills for working with Git and GitHub to track changes, backup, and undo mistakes in your projects


1. Introduction to the course
  • 1.1 Udemy support page.html
  • 1. Introduction
  • 2.1 1 Introduction.pdf
  • 2. Course content - PDF.html
  • 3.1 Official Pro Git e-book webpage.html
  • 3.2 Official Documentation webpage.html
  • 3.3 Official Git webpage.html
  • 3. Additional resources for learning Git

  • 2. Basic theory
  • 1.1 Official Pro Git e-book - VCS types.html
  • 1. What is a Version Control System
  • 2.1 Official Pro Git e-book - The history of Git.html
  • 2.2 Official Pro Git e-book - What is Git.html
  • 2. About the Git Version Control System

  • 3. Installing Git on your system
  • 1.1 Official Git webpage.html
  • 1.2 Official Git webpage - Installers for Windows.html
  • 1. Installing Git for Windows
  • 2.1 Official Git webpage.html
  • 2.2 Official Git webpage - Linux installation guide.html
  • 2. Installing Git for Linux

  • 4. Updating Git for your system
  • 1.1 Official Git webpage.html
  • 1.2 Official Git webpage - Windows installers.html
  • 1.3 Updating Git for Windows - Terminal instructions.html
  • 1. Updating Git on Windows
  • 2.1 Updating Git on Windows.pdf
  • 2. Updating Git on Windows - PDF.html
  • 3. Updating Git on Linux
  • 4.1 Updating Git on Linux.pdf
  • 4. Updating Git on Linux - PDF.html

  • 5. Why we should choose the terminal
  • 1. The Command-line interface

  • 6. Windows terminal
  • 1.1 History of the Windows Terminal..html
  • 1. Terminal types
  • 2. Navigating the File System - cd command
  • 3. Display directory structure - dir command
  • 4. Open files and folders in their respective applications - start command
  • 5. Creating directories - mkdir command
  • 6. Creating files - echo command
  • 7. Renaming files and folders - ren command
  • 8. Copying and Moving files and folders - copy & move commands
  • 9. Removing files and folders - del & rd commands

  • 7. Linux terminal
  • 1. Terminal types
  • 2. Navigating the File System - cd command
  • 3. Display directory structure - ls command
  • 4. Open files and folders in their respective applications - open command
  • 5. Creating directories - mkdir command
  • 6. Creating files - touch command
  • 7. Renaming and Moving files and folders - mv command
  • 8. Copying files and folders - cp command
  • 9. Removing files and folders - rm command

  • 8. Before starting learning Git
  • 1. Important final notes about the terminal

  • 9. Git basics
  • 1.1 Official Pro Git e-book.html
  • 1.2 Official Documentation - git init command.html
  • 1. Creating local repositories
  • 2.1 Editor setup - Linux.html
  • 2.2 Editor setup - MacOS.html
  • 2.3 Editor setup - Windows.html
  • 2.4 Official Pro Git e-book.html
  • 2.5 Official Documentation - git config command.html
  • 2. Configuring Git
  • 3.1 Official Pro Git e-book.html
  • 3.2 Official Documentation - git add command.html
  • 3.3 Official Documentation - git commit command.html
  • 3.4 Official Documentation - git status command.html
  • 3. Basic commands
  • 4.1 Official Pro Git e-book.html
  • 4.2 Official Documentation - git log command.html
  • 4. Viewing history

  • 10. Interacting with remote repositories
  • 1.1 Official website - Bitbucket.html
  • 1.2 Official website - GitHub.html
  • 1.3 Official website - GitLab.html
  • 1. Remote repositories and GitHub
  • 2.1 Creating a personal GitHub account.pdf
  • 2. GitHub account exercise.html
  • 3.1 Official Pro Git e-book.html
  • 3.2 Official Documentation - git clone command.html
  • 3. Cloning a remote repository
  • 4.1 Official Pro Git e-book.html
  • 4.2 Official Documentation - git remote command.html
  • 4. Connecting to a remote repository
  • 5.1 Official Pro Git e-book.html
  • 5.2 Official Documentation - git pull command.html
  • 5.3 Official Documentation - git push command.html
  • 5. Pushing and Pulling operations
  • 6.1 Credential manager - Linux.html
  • 6.2 Credential manager - MacOS.html
  • 6.3 Credential manager - Windows.html
  • 6.4 Generating SSH key - Linux.html
  • 6.5 Generating SSH key - MacOS.html
  • 6.6 Generating SSH key - Windows.html
  • 6.7 Official Pro Git e-book.html
  • 6. Communication Protocols - HTTPS & SSH
  • 7.1 Official Pro Git e-book.html
  • 7.2 Official Documentation - git pull command.html
  • 7.3 Official Documentation - git push command.html
  • 7.4 Resolving merge conflicts - Linux.html
  • 7.5 Resolving merge conflicts - MacOS.html
  • 7.6 Resolving merge conflicts - Windows.html
  • 7. Pushing and Pulling operations - Conflicts

  • 11. Undoing mistakes and Reverting history
  • 1.1 Official Pro Git e-book.html
  • 1. Introduction
  • 2.1 Official Pro Git e-book.html
  • 2.2 Official Documentation - git commit --amend command.html
  • 2. Correcting commits with amend
  • 3.1 Official Pro Git e-book.html
  • 3.2 Official Documentation - git restore command.html
  • 3. Undoing mistakes - git restore command
  • 4.1 Official Pro Git e-book.html
  • 4.2 Official Documentation - git reset command.html
  • 4.3 Official Documentation - git revert command.html
  • 4. Undoing mistakes - git reset and git revert commands

  • 12. Branching and Merging
  • 1.1 GitHub guide on branches.html
  • 1.2 Official Pro Git e-book.html
  • 1. Introduction
  • 2.1 Official Pro Git e-book.html
  • 2.2 Official Documentation - git branch --list command.html
  • 2.3 Official Documentation - git branch command.html
  • 2. Understanding our surroundings - HEAD pointer and Listing branches
  • 3.1 Official Pro Git e-book.html
  • 3.2 Official Documentation - git branch command.html
  • 3.3 Official Documentation - git switch command.html
  • 3. Creating and Switching branches
  • 4.1 Official Pro Git e-book.html
  • 4.2 Official Documentation - git branch -d command.html
  • 4.3 Official Documentation - git branch -D command.html
  • 4. Deleting and Renaming branches
  • 5.1 Atlassian documentation - Merging.html
  • 5.2 Official Pro Git e-book.html
  • 5.3 Official Documentation - git merge command.html
  • 5. Merging branches
  • 6.1 Official Pro Git e-book.html
  • 6.2 Official Documentation - git merge command.html
  • 6. Merging conflicts
  • 139,000 تومان
    بیش از یک محصول به صورت دانلودی میخواهید؟ محصول را به سبد خرید اضافه کنید.
    خرید دانلودی فوری

    در این روش نیاز به افزودن محصول به سبد خرید و تکمیل اطلاعات نیست و شما پس از وارد کردن ایمیل خود و طی کردن مراحل پرداخت لینک های دریافت محصولات را در ایمیل خود دریافت خواهید کرد.

    ایمیل شما:
    تولید کننده:
    مدرس:
    شناسه: 41123
    حجم: 1567 مگابایت
    مدت زمان: 346 دقیقه
    تاریخ انتشار: 15 آبان 1403
    طراحی سایت و خدمات سئو

    139,000 تومان
    افزودن به سبد خرید