zoukankan      html  css  js  c++  java
  • github

    【1】
    repository 仓库

    star 收藏

    fork复制克隆项目

    pull request :王五复制别人张三(forked from )的项目,改动后发起pull request请求,张三感觉还不错合并到原仓库中

    watch 关注

    lssue 问题
    发现代码bug,但是目前没有成行代码,需要讨论时使用:
    就是你开源了一个项目,别人发现你的项目中有bug,或者哪些地方不好,它就可以给I你提个lssus,即问题,提的问题多了也就是lssues,然后你看到这问题可以足一去修复,修复好了就可以一个个的close掉

    配置
    git config --global core.autocrlf false
    git config --global core.safecrlf false

    ---

    ---

    git config --list

    ---------------------------------------------------------------------------------------------------------

    鼠标右键 git bash here 或者在本地项目文件夹鼠标右键git bash here 

    cd 项目

    git config --global user.name 'shywangpan'
    git config --global user.email '77673031@qq.com'

    git init (创建.git文件夹)   初始化
    touch 1.php
    git add 1.php [git add --all]
    git commit -m '描述'
    git push /?git push -u origin master

    --------------------------------------------------------------------------------------------------------------
    cd d:www
    git clone https://github.com/shywangpan/xxx.git下载远程项目到本地
    cd d:www/xxx


    shywangpan
    77673031@qq.com.
    0**9


    cd
    git init
    git add git status
    git commit -m '...'
    git push
    git status

     

    【2】创建仓库/创建新项目

    说明:一个git库(仓库)对应一个开源项目

    1点击小猫->start a project 

  • 相关阅读:
    PLSQL查询显示乱码或者问号
    Sonar 扫描C#代码 排除文件
    C# 短日期转换为DateTime
    电脑远程连接不上或者ip的地址一直是169.254
    C#导出CSV或者EXCEL文件转换文本
    Oracle 计算两个日期相差天时分秒
    Linux 做网关
    Python 内置函数
    Python Fileinput 模块
    Python-2.7 配置 tab 自动补全功能
  • 原文地址:https://www.cnblogs.com/finddata/p/10421481.html
Copyright © 2011-2022 走看看