git usage

作者: 寇奕迪 | 来源:发表于2019-01-17 08:25 被阅读0次

  • git init
    Create an empty Git repository or reinitialize an existing one. Running git init in an existing repository is safe. It will not overwrite things that are already there.

  • git add
    This command updates the index using the current content found in the working tree, to prepare the content staged for the next commit.

-git commit
Stores the current contents of the index to repository, along with a log message from the user describing the changes.

相关文章

网友评论

      本文标题:git usage

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