Giter VIP home page Giter VIP logo

isp's Introduction

isp

isp-mevn架构的前后端分离的项目;处于dev分支上; 初始化一个Git仓库 git init 查看分支:git branch 创建分支:git branch 切换分支:git checkout 创建+切换分支:git checkout -b 合并某分支到当前分支:git merge 删除分支:git branch -d 新建一个标签 git tag 指定标签信息 git tag -a -m "blablabla..." 用PGP签名标签 git tag -s -m "blablabla..." 查看所有标签 git tag 推送一个本地标签 git push origin 推送全部未推送过的本地标签 git push origin --tags 删除一个本地标签 git tag -d 删除一个远程标签 git push origin :refs/tags/ 查看远程库信息 git remote -v; 从本地推送分支 git push origin branch-name,如果推送失败,先用git pull抓取远程的新提交; 在本地创建和远程分支对应的分支 git checkout -b branch-name origin/branch-name,本地和远程分支的名称最好一致; 建立本地分支和远程分支的关联 git branch --set-upstream branch-name origin/branch-name; 从远程抓取分支 git pull,如果有冲突,要先处理冲突。 工作区的状态 git status 查看修改内容 git diff 版本回滚 git reset --hard commit_id 查看提交历史 git log 查看命令历史 git reflog

isp's People

Contributors

bodomlake avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.