美文网首页
指令收集

指令收集

作者: yuerxiaoshui | 来源:发表于2020-11-01 16:06 被阅读0次

    1. git config

    git config --global user.name "user_name'' setting username
    git config --global user.email "email_id'' setting email id
    git config --global branch.autosetuprebase always avoid merge commits for pulling
    git config --global color.ui true color highlighting
    git config --global color.status auto color highlighting
    git config --global color.branch auto color highlighting
    git config --global core.editor vim setting default editor
    git config --global merge.tool vimdiff setting default merge tool
    git config --list listing git settings
    • git init
    • git add
    • git commit
    • git diff
    • git help
    • git remote
    • git status
    • git clone
    • git rebase
    • git checkout
    • git branch
    • git push
    • git merge
    • git reset
    • git grep
    • git blame
    • git log
    • git show
    • git stash
    • git gc
    • git pull
    • git revert
    • git tag
    • git am
    • git apply
    • git mv
    • git format-patch
    • git filter-branch
    • git forget-blob
    • git clean

    相关文章

      网友评论

          本文标题:指令收集

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