美文网首页
GitHub手册速查

GitHub手册速查

作者: Lucifer黄 | 来源:发表于2017-10-16 13:02 被阅读0次

    Git global setup

    git config --global user.name "your name"

    git config --global user.email  "your email"

    Create a new repository

    git clone git地址

    cd YPYB

    touch README.md

    git add README.md

    git commit -m "add README"

    git push -u origin master

    Existing folder

    cd existing_folder

    git init

    git remote add origin git@172.16.35.19:lihui/YPYB.git

    git add .

    git commit

    git push -u origin master

    Existing Git repository

    cd existing_repo

    git remote add origin git@172.16.35.19:lihui/YPYB.git

    git push -u origin --all

    git push -u origin --tags

    #清楚提交缓存

    git rm -r --cached .

    git add .

    git commit -m 'update .gitignore'

    git push -u origin master

    删除本地仓库

    find . -name ".git" | xargs rm -Rf

    提交失败未与服务器同步

    git pull --rebase origin master

    提交修改

    git add --update .

    查看git状态

    git status

    相关文章

      网友评论

          本文标题:GitHub手册速查

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