zoukankan      html  css  js  c++  java
  • code site 例子

    Configure Git for the first time

    git config --global user.name "朱志强"
    git config --global user.email "zhuzhiqiang04@meituan.com"

    Working with your repository

    If you want to simply clone this empty repository then run this command in your terminal.
    git clone ssh://git@git.sankuai.com/~zhuzhiqiang04/test1.git
    If you already have code ready to be pushed to this repository then run this in your terminal.
    cd existing-project
    git init
    git add --all
    git commit -m "Initial Commit"
    git remote add origin ssh://git@git.sankuai.com/~zhuzhiqiang04/test1.git
    git push origin master
    If your code is already tracked by Git then set this repository as your "origin" to push to.
    cd existing-project
    git remote set-url origin ssh://git@git.sankuai.com/~zhuzhiqiang04/test1.git
    git push origin master
    All done with the commands?
  • 相关阅读:
    数据链路层
    补码加减法
    matlab函数
    HDU2159_二维完全背包问题
    HDU2844买表——多重背包初探
    HDU1025贫富平衡
    最大m段子段和
    01背包浮点数情况
    第K大01背包
    HDU2955 01背包
  • 原文地址:https://www.cnblogs.com/zzq-include/p/14471352.html
Copyright © 2011-2022 走看看