zoukankan      html  css  js  c++  java
  • Git 一般性操作

    git全局设定

    git config --global user.name “码云账号” 
    git config --global user.email “码云注册邮箱”

    git 定位文件夹
    cd进入到需要同步的文件夹线面

    git init

    上传到git

    git add .
    git commit -m '上传标记'
    git push 

    没有项目代码的情况下创建 git 仓库:

    mkdir GitHelloWorld //新建一个GitHelloWorld文件夹,本地git仓
    cd GitHelloWorld //切换到项目路径下
    git init //git初始化
    git commit -m "first commit" //提交并注释
    git remote add origin https: //git.oschina.net/你的码云账号/GitHelloWorld.git
    git push -u origin master //上传到码云git 远程仓

    切换分支:

    git checkout index-swiper
  • 相关阅读:
    UESTC
    Education Round 8 A
    Gym
    Gym
    hdoj 1159 Common Subsequence
    UVA
    UESTC
    51Nod 1068 Bash游戏 V3 (这规律不好找)
    51Nod 1066 Bash游戏
    51Nod 1002 数塔取数问题
  • 原文地址:https://www.cnblogs.com/souphm/p/10870384.html
Copyright © 2011-2022 走看看