美文网首页
Git 基本操作

Git 基本操作

作者: IT前沿技术分享 | 来源:发表于2023-01-29 08:51 被阅读0次

    Git 全局设置

    git config --global user.name "youName"
    git config --global user.email "youName@xxx.com"
    

    创建一个新仓库

    git clone git@xx.xx.com:xxx/xxx.git
    cd xxx
    touch README.md
    git add README.md
    git commit -m "add README"
    git push -u origin master
    

    推送现有文件夹

    cd existing_folder
    git init
    git remote add origin git@xx.com:xx/xx.git
    git add .
    git commit -m "Initial commit"
    git push -u origin master
    

    推送现有的 Git 仓库

    cd existing_repo
    git remote rename origin old-origin
    git remote add origin git@xx.xx.com:xx/xx.git
    git push -u origin --all
    git push -u origin --tags
    

    相关文章

      网友评论

          本文标题:Git 基本操作

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