美文网首页
代码托管工具

代码托管工具

作者: BR | 来源:发表于2015-08-14 22:54 被阅读0次

    //用git 把Git 项目仓库克隆到本地,以便日后随时更新:

    $ git clone git://git.kernel.org/pub/scm/git/git.git

    //git add 命令告诉Git 开始代码托管

    这些文件进行跟踪,然后提交:

    $ git add filenme.html

    //每次准备提交前,先用git status 看下,是不是都已暂存起来了,然后再运行提交命令

    $ git commit -m 'initial project version'

    // 把本地仓库提交到远程仓库的master分支中

    $ git push origin master

    相关文章

      网友评论

          本文标题:代码托管工具

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