美文网首页
Git 初步使用

Git 初步使用

作者: f51a4fdf4335 | 来源:发表于2018-04-15 17:28 被阅读0次

    如果以之前没有用过 git,当你第一天入职怎么开始干活呢?

    Git详细使用教程

    安装 git

    这里就不详细阐述了
    Git安装

    配置用户名有邮箱

    $ git config user.name yourname
    $ git config user.email youremail

    // 全局配置
    $ git config --global user.name yourname
    $ git config --global user.email youremail

    clone 远程仓库项

    $ git clone <url>

    创建分支

    // 创建分支
    $ git branch <name>

    // 进入到新建分支
    $ git checkout <name>

    // 创建并进入的指令
    $ git checkout -b <name>

    提交

    // 提交缓存区,. 是提交所有,你可以选择提交指定文件
    $ git add .

    // 确认提交
    $ git commit -m "提交说明"

    // 从当前分支切换到主分支
    $ git checkout master

    // 拉取远程仓库当前版本到主分支
    $ git pull

    // 与你的分支合并
    $ git merge --no-ff -m "合并说明" <name>

    // 提交远程仓库
    $ git push origin master

    over 学会了吗?

    相关文章

      网友评论

          本文标题:Git 初步使用

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