git日常

作者: 雪中洛阳 | 来源:发表于2018-10-05 20:22 被阅读12次

    参考网站:
    https://blog.csdn.net/martinwangjun/article/details/78780885
    https://my.oschina.net/u/2343829/blog/644663
    https://www.cnblogs.com/rickqin/p/7068088.html

    例如本地需要上传的项目为 ResellerWP

    # 服务端创建仓库
    
    
    git路径: /home/git
    su git
    cd /home/git/gitrepo/
    mkdir ResellerWP.git
    cd ResellerWP.git
    git --bare init
    
    
    
    # 客户端首次上传
    cd ProjectDir
    git init                            初始化仓库
    git add .                           加到暂存区
    --忽略不需要上传的文件夹/文件            在目录下新建.gitignore, 里边分行填入文件夹名/文件名
    git commit -m "首次上传"            提交
    git remote add origin git@xxx.xx.xx.xx:/home/git/gitrepo/ResellerWP.git    关联远程仓库
    git push -u origin master           第一次推送到远程仓库
    
    git push origin master             以后推送
    
    
    # 从服务端拉取到本地
    git clone git@xxx.xx.xx.xx:/home/git/gitrepo/ResellerWP.git
    
    
    #其它
    git remote remove origin            解除关联
    
    

    相关文章

      网友评论

          本文标题:git日常

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