zoukankan      html  css  js  c++  java
  • 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
    
  • 相关阅读:
    02.两数相加
    1480. 一维数组的动态和
    01. 两数之和
    67.二进制求和
    文献阅读(QoS-Aware Web Service Recommendation by Collaborative Filtering)
    服务计算---课程总结报告
    125. 验证回文串
    Docker 常用命令
    Docker 安装
    RESTful
  • 原文地址:https://www.cnblogs.com/grandyang/p/4001278.html
Copyright © 2011-2022 走看看