• gitlab的使用方法


    Git global setup: git全局建立
    git config --global user.name "Your Name"
    git config --global user.email "your.name@gmail.come"

    Create Repository: 建立仓库
    mkdir your_file
    cd your_file
    git init
    touch README
    git add README
    git commit -m "first commit"
    git remote add origin git@gitlab.com:yourname/your_file.git
    git push -u origin master

    Existing Git Repo? 已经存在git仓库
    cd existing_git_repo
    git remote add origin git@gitlab.com:yourname/your_file.git
    git push -u origin master


    Add existing repo to gitlab:

    git init
    touch README git add README git commit -m "first commit" git remote add origin git@gitlab.com:yourname/your_file.git git push -u origin master
     

    If error "fatal: remote origin already exists" occurs:

    Seems like remote origin is already there somehow and you want to change its uri to another value. You can't add origin since its already there but you can update it. Instead of git remote add command, you can run:

    git remote set-url origin git@gitlab.com:yourname/your_file.git
    
  • 相关阅读:
    闭包
    原型继承
    js时间戳转成日期格式
    常用正则表达式
    vue中如何实现pdf文件预览?
    Vue动画效果
    手把手教你封装 Vue 组件,并使用 npm 发布
    LCD驱动(FrameBuffer)实例开发讲解
    每个程序员都该阅读的书
    LCD platform_device(s5pv210)
  • 原文地址:https://www.cnblogs.com/grandyang/p/4001278.html
Copyright © 2020-2023  润新知