zoukankan      html  css  js  c++  java
  • git 代码托管仓库 操作

    Git global setup 【基本设置】

    git config --global user.name "XXXXXXXX"

    git config --global user.email "XXXXXXXX"

     

    ...或在命令行上创建一个新的存储库【克隆到本地,然后添加README】

    git clone https://XXXXXXXX/test.git

    cd test

    touch README.md

    git add README.md

    git commit -m "add README"

    git push -u origin master

     

    ...或从命令行推送现有空的存储库【在本地文件目录下,初始化git ,添加远程库,然后添加对应的文件,添加commit,然后上传】

    【若出现已经存在的报错,先删除,再添加就好了,git remote rm origin

    cd existing_folder

    git init

    git remote add origin https://XXXXXXXX/test.git

    git add .

    git commit -m "Initial commit"

    git push -u origin master

     

    ...或从命令行推送已有存储库

    cd existing_repo

    git remote add origin https://XXXXXXXX/test.git

    git push -u origin --all

    git push -u origin --tags

     

    ——————上传代码步骤—————————

    1、先在coding 上建好仓库,然后克隆到本地:

    git config --global user.name "XXXXXXXX"

    git config --global user.email "XXXXXXXX"

    git clone https://XXXXXXXX/test.git

     

    2、进入克隆后的本地仓库目录,然后初始化,添加远程库

    cd existing_folder

    git init

    git remote add origin https://XXXXXXXX/test.git

     

    3、把要上传的代码都移动到这个本地仓库下面

    4、添加对应代码,上传

    git add .

    git commit -m "Initial commit"

    git push -u origin master

     

     

    =========IDEA 中 配置coding======================

    1、IDEA 中:File — new — project from version contral ———  git 

    URL 填写Git地址(克隆或下载里面的URL),然后将项目clone到本地

    或者:VCS ——— cheakout from version ———— git 

    …………

      

    2、修改代码,测试通过后,发起上传代码

    VCS—— commit file ——— push 

     

  • 相关阅读:
    SpringBoot HATEOAS用法简介
    犀函
    dubbo 相关面试题 有用(转)
    想使用消息队列,先考虑下这些问题!
    appium在Mac上环境搭建
    3. SOFAJRaft源码分析— 是如何进行选举的?
    Redis相关知识
    替代微信ipad协议(转)
    c#面试题(1)(转)
    例题6-5 Boxes in a line uVa12657
  • 原文地址:https://www.cnblogs.com/Allen-rg/p/12896161.html
Copyright © 2011-2022 走看看