美文网首页Other
[Git] 用git向github提交代码

[Git] 用git向github提交代码

作者: 何幻 | 来源:发表于2016-03-07 07:14 被阅读109次

    (1)进入工作目录

    $ cd github
    

    (2)clone到本地

    $ git clone https://github.com/thzt/react-native-init.git
    

    (3)为文件添加版本控制

    $ git add .
    

    注:
    .”表示跟踪所有文件,.gitignore文件中列举了不需要添加版本控制的文件

    (4)提交到本地

    $ git commit -m "message"
    

    (5)提交到服务器

    $ git push
    

    注:
    这里会询问,GitHub的用户名和密码。

    注:
    (1)$ git status可以查看当前状态
    (2)可以设置全局usernameuseremail来标识用户,

    $ git config --global user.name "..."
    $ git config --global user.email "..."
    

    相关文章

      网友评论

        本文标题:[Git] 用git向github提交代码

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