美文网首页
Git Handbook

Git Handbook

作者: 我是聪 | 来源:发表于2018-12-28 13:40 被阅读0次

    What's a vesion control system ?

        A version control system, or VCS,tracks the history of changes as people and teams collaborate or projects together. As the projects together.As the project evolves, teams can run tests, fix bugs, and contribute new code with the confidence that any version can be recovered at any time.Developers can review project history to:

        Which changes were made ?

        Who made the changes ?

        When were the changes made ?

        Why were changes needed ?

    What's a distributed version control system ?

         Git is an example of a distributed version control system(DVCS) commonly used for open source and commercial software development.DVCSs allow full access to every file, branch, and iteration of a project,and allows every user access to a full and self-contained history of all changes.Unlike once poular centralized version control systems,DVCSs like Git don't need a constant connection to a central repository.Developers can work anyway and collaborate asynchronously from any time zone.

    Why GIt?

        Git lets developers see the entire timeline of their changes,decisions, and progression of any project in one place .From the moment they access the history of a project, the developer has all the context they need to understand it and start contributing.

        Developers work in every time zone.With a DVCS like Git,collabortion can happen any time while maintaining source code integrity.Using branches,developers can safely propose changes to production code.

        Businesses using Git can break down communication barriers between teams and keep them focused on doing their best work. Plus, Git makes it possible to align experts across a business to collaborate on major projects.

    What's a repository?

        A repository,or Git project,encompasses the entire collection of files and folders associated with a projects,along with each file's revision history.The file history appears as snapshots in time called commits,and the commits exists as a linked-list relationship, and can be organized into multiple lines of development called branches.Because Git is a DVCS, repositories are self-contained units and anyone who owns a copy of the repository can access the entire codebase and its history.Using the command line or other ease-of-use interfaces,a git repository also allows for :interaction with the history,cloning,creating branches ,committing, merging, comnparing changes across versions of code ,and more.

        Working in repositories keeps development projects organized and protected.Developers are encouraged to fix bugs, or create fresh features,without fear of derailing mainline development efforts. Git facilitates this through the use of topic branches: lightweight pointers to commits in history that can be easily created and deprecated when no longer needed.

        Through platforms like GitHub, Git also provides more opportunities for project transparency and collaboration.Public repositories help teams work together to build the best  final product.

    原文地址

    相关文章

      网友评论

          本文标题:Git Handbook

          本文链接:https://www.haomeiwen.com/subject/zoeslqtx.html