Saturday, June 24, 2023

more understanding of GitHub concepts

this link has good starting points for GitHub basics

    Must Watch Video

  1. TortoiseGit Basics
  2. Here are the basics of working with TortoiseGit.

    Good Articles

  3. Git basics
  4. Git is a free and open-source version control system, originally created by Linus Torvalds in 2005. Unlike older centralized version control systems such as SVN and CVS, Git is distributed: every developer has the full history of their code repository locally. This makes the initial clone of the repository slower, but subsequent operations such as commit, blame, diff, merge, and log dramatically faster.

    Git also has excellent support for branching, merging, and rewriting repository history, which has led to many innovative and powerful workflows and tools. Pull requests are one such popular tool that allows teams to collaborate on Git branches and efficiently review each other's code. Git is the most widely used version control system in the world today and is considered the modern standard for software development.

    Here is a basic overview of how Git works:

    1. Create a "repository" (project) with a git hosting tool (like Bitbucket)
    2. Copy (or clone) the repository to your local machine
    3. Add a file to your local repo and "commit" (save) the changes
    4. "Push" your changes to your main branch
    5. Make a change to your file with a git hosting tool and commit
    6. "Pull" the changes to your local machine
    7. Create a "branch" (version), make a change, commit the change
    8. Open a "pull request" (propose changes to the main branch)
    9. "Merge" your branch to the main branch

  5. About commits
  6. You can save small groups of meaningful changes as commits.

No comments:

Post a Comment