zoukankan      html  css  js  c++  java
  • git上传本地文件到gitlab

    The repository for this project is empty

    If you already have files you can push them using command line instructions below.

    Otherwise you can start with adding a README, a LICENSE, or a .gitignore to this project.

    You will need to be owner or have the master permission level for the initial push, as the master branch is automatically protected.

    You can activate Auto DevOps (Beta) for this project.

    It will automatically build, test, and deploy your application based on a predefined CI/CD configuration.

     

    Command line instructions

    Git global setup
    git config --global user.name "qzd"
    git config --global user.email "qzd123@163.com"
    
    Create a new repository
    git clone ssh://git@192.168.1.245:10022/qzd/web.git
    cd web
    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 ssh://git@192.168.1.245:10022/qzd/web.git
    git add .
    git commit -m "Initial commit"
    git push -u origin master
    
    Existing Git repository
    cd existing_repo
    git remote add origin ssh://git@192.168.1.245:10022/qzd/web.git
    git push -u origin --all
    git push -u origin --tags
  • 相关阅读:
    wmq的A×B Problem
    MATLAB 求系统的单位冲击响应及单位阶跃响应
    关于共享率过低的一些事
    Vue组件之间的通信
    浏览器支持ES6的import和export
    Vue axios拦截问题
    开屏倒计时
    git常用操作
    原型
    this指向问题
  • 原文地址:https://www.cnblogs.com/BigStupid/p/8059247.html
Copyright © 2011-2022 走看看