git

作者: jh2k15 | 来源:发表于2018-05-11 16:07 被阅读0次

    https://www.bilibili.com/video/av17603446/?p=3

    git --version
    brew install git
    git config --global user.name 'jk2k15'
    git config --global user.email 'jh2k15@qq.com'
    git config --list
    git congi -l
    git

    git init
    ls -la

    cd ..
    git init test2

    git clone http://
    git clone http:// (dir name) 重命名

    git status add
    git add . 暂存
    git commit -m 'first'

    git log commit

    git checkout afasd1212
    git checkout - 当前节点

    git log -p 具体修改
    git log --oneline
    git log --oneline --all
    git log --all --graph 图像化
    //标签
    git tag -a'v1.0.0' -m'第一' //commit 之后
    git tag
    git tag -a'v1.0.0' -m'第一' sdf21212
    git show v1

    git branch richname
    git checkout richname

    git checkout master

    git checkout -b branchname

    git merge branchname

    git remote add (origin) http://
    git remote
    git remote -v

    git push -u (origin) master //origin 默认远程仓库名

    //多人
    git pull == git fetch && git merge

    &&

    相关文章

      网友评论

          本文标题:git

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