Giter VIP home page Giter VIP logo
༺༃恶༒魔༃༻ photo

vsery Goto Github PK

followers: 7.0 following: 28.0 repos: 97.0 gists: 1.0

Name: ༺༃恶༒魔༃༻

Type: User

Company: Changsha city

Bio: 一一-〖 善胜者不争卍善阵者不战 〗-一一 一一-〖 善战者不败卐善败者终胜 〗-一一 一一-〖 不忘一初心の逐梦一前行 〗-一一 -〖Don't forget to follow your dreams〗- ---〖 Let's show them we are better 〗---

Location: Vow stays ever, remember yesterday

Blog: http://www.vsery.cn

邮件服务器

PHPMailer is available on Packagist (using semantic versioning), and installation via composer is the recommended way to install PHPMailer. Just add this line to your composer.json file:

"phpmailer/phpmailer": "~6.0"

or run

composer require phpmailer/phpmailer

学习 PHP 语言

学习 thinkphp5 框架

[THINKPHP5 快速入门] (https://www.kancloud.cn/thinkphp/thinkphp5_quickstart)

学习 git 命令

查看分支:git branch
创建分支:git branch <name>
切换分支:git checkout <name>
创建+切换分支:git hecckout -b <name>
合并某分支到当前分支:git merge <name>
删除分支:git branch -d <name>
git itnit 创建 .git文件夹
git status 查看文件状态
git add .[file] 添加文件/文件夹 . 所有文件 [添加到缓存区]
git commit -m '' 提交到本地分支.
git checkout -- [file] , 撤销 git add 操作,回到最后一次 git commit或git add时的状态.
git reset HEAD [file] file可以把暂存区的修改撤销掉(unstage)
git diff HEAD 查看工作区和版本库里面最新版本的区别
git rm [file] 删除文件并提交到本地分子
rm [file] 删除文件, git checkout 恢复
git remote add origin [email protected]:vsery/learngit.git 关联远程库[github]
git push -u origin master 推送到远程库 [由于远程库是空的,我们第一次推送master分支时,加上了-u参数,Git不但会把本地的master分支内容推送的远程新的master分支,还会把本地的master分支和远程的master分支关联起来,在以后的推送或者拉取时就可以简化命令]
git clone [email protected]:vsery/vsery.git 克隆远程库[github]到本地库
git checkout -b dev 创建dev分支,然后切换到dev分支,
git branch 命令查看当前分支:当前分支前面会标一个*号。
git branch -r  先查看远程分支
git branch -d dev 删除dev分支
git branch -r -d origin/branch-name 删除远程分支
git push origin :branch-name 推送删除远程分支
git merge dev 命令用于合并指定分支到当前分支
git merge --no-ff -m "merge with no-ff" dev [--no-ff参数就可以用普通模式合并]
git log 查看历史
git log --graph命令可以看到分支合并图
git stash 可以把当前工作现场"储藏"起来,等以后恢复现场后继续工作
git stash list 命令看看"储藏"列表
git stash apply 恢复,但是恢复后,stash内容并不删除,你需要用git stash drop来删除;
git stash pop,恢复的同时把stash内容也删了:
git pull <远程主机> <远程分支>:<本地分支>  先用把最新的提交从origin/dev抓下来,然后,在本地合并
git tag <name> 新标签, 查看标签:
git tag -a v0.2 -m "signed version 0.2 released" 用-a指定标签名,-m指定说明文字 -s用私钥签名
git push origin <tagname> 推送标签
git push origin tags 一次性推送全部尚未推送到远程的本地标签:
git tag -d 删除标签
git push origin :refs/tags/v0.9 删除命令也是push
git show <tagname> 可以看到说明文字:
[file] 文件名,文件夹

༺༃恶༒魔༃༻'s Projects

1loc icon 1loc

What's your favorite JavaScript single LOC (line of code)?

actionview icon actionview

An issue tracking tool based on laravel+reactjs for small and medium-sized enterprises, open-source and free, similar to Jira.

animate.css icon animate.css

🍿 A cross-browser library of CSS animations. As easy to use as an easy thing.

ant-design-vue icon ant-design-vue

🌈 An enterprise-class UI components based on Ant Design and Vue. 🐜

antd-admin icon antd-admin

A admin dashboard application demo built upon Ant Design and Dva.js

blog icon blog

if you like, please order star and subscribe to watch.[如果你喜欢,请点star并watching]

blog-1 icon blog-1

:star2: PJ Blog is an open source blog built with Laravel and Vue.js.

datav icon datav

Vue数据可视化组件库(类似阿里DataV,大屏数据展示),提供SVG的边框及装饰、图表、水位图、飞线图等组件,简单易用,长期更新(React版已发布)

deeplearning-500-questions icon deeplearning-500-questions

深度学习500问,以问答形式对常用的概率知识、线性代数、机器学习、深度学习、计算机视觉等热点问题进行阐述,以帮助自己及有需要的读者。 全书分为18个章节,50余万字。由于水平有限,书中不妥之处恳请广大读者批评指正。未完待续............ 如有意合作,联系[email protected] 版权所有,违权必究 Tan 2018.06

esdoc icon esdoc

ESDoc guides. 用 ESDoc 规范编写代码注释。

explosions icon explosions

My daily 「Explosion」 about HTML & CSS & JavaScript.

flex.css icon flex.css

flex.css is declarative layout which is compatible with wechat, UC, webview and other main-stream mobile browser and surpports react, vue, angular.

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.