zoukankan      html  css  js  c++  java
  • 项目使用git管理

    git init    // 初始化

    git add .    //添加

    git commit -m '项目初始化'

    在github中创建远程仓库

    连接远程仓库

    git remote add origin  <url>

    提交到远程仓库

    git push -u origin master

    在项目中编写代码后

    git add .

    git commit -m '知识点1'

    git tag 01_知识点1

    git tag   //查看tag有几个

    git status

    git log  //查看更新

    git reset <commit>

    git reset --hard b3b607f   //返回到初始项目

    git status

    再次更改过后

    git add .

    git commit -m '知识点2'

    git tag 02_知识点2

    git tag

    git push --tags  //提交所有tag到远程仓库

    有可能会要求输入github账号和密码

    成功后去github中项目查看tag

    如何下载tag当本地

    不能直接downloadZIP

    在你想要存放的文件夹下打开gitbase终端

    git clone <url>

    在微信小程序中想要使用,直接导入项目。选中克隆下来的文件夹。

    git status //清除bug

    git checkout 01_知识点1  //查看知识点1的相关代码

    git checkout 02_知识点2 //查看知识点2的相关代码

    项目后续: 项目更新

    git init

    git add .

    git commit -m '更新'

    git pull

    git push origin master

  • 相关阅读:
    oc-autorelease
    oc-循环引用问题
    oc-内存管理总结
    tomcat-各文件夹作用解析
    oc-多对象内存管理
    oc-arc(Automatic Reference Counting 自动引用机制) 与 内存管理
    tomcat-context.xml
    oc-set方法内存管理 和 @property的参数
    【转载】java学习线路
    一段shell脚本
  • 原文地址:https://www.cnblogs.com/linxim/p/11701291.html
Copyright © 2011-2022 走看看