# app-myweb2

> this is for study node project !

Latest version **0.0.2** (published 2015-12-11) · ISC license · 0 weekly downloads

## Install

```sh
npm install app-myweb2
pnpm add app-myweb2
yarn add app-myweb2
bun add app-myweb2
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2015-12-11 |
| First published | 2015-12-10 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 7 |
| Known vulnerabilities | 0 (+9 in 4 direct dependencies) |
| Install scripts | no |
| Maintainers | sohucw |
| Keywords | sohucw-myweb |

## Links

- npm: https://www.npmjs.com/package/app-myweb2
- Repository: https://sohucw@github.com/tiandi
- npm.io page: https://npm.io/package/app-myweb2

## Dependencies (7)

- [jade](https://npm.io/package/jade.md) ~1.11.0
- [debug](https://npm.io/package/debug.md) ~2.2.0
- [morgan](https://npm.io/package/morgan.md) ~1.6.1
- [express](https://npm.io/package/express.md) ~4.13.1
- [body-parser](https://npm.io/package/body-parser.md) ~1.13.2
- [cookie-parser](https://npm.io/package/cookie-parser.md) ~1.3.5
- [serve-favicon](https://npm.io/package/serve-favicon.md) ~2.3.0

## Recent versions

- 0.0.2 (latest) — 2015-12-11
- 0.0.1 — 2015-12-10

## README

// 创建分支
git branch name
// 切换分支
git checkout branchName
// 将本地仓库同步到远程  name 通常是方便记忆取的名字  url是远程git仓库的地址
git remote add name url

git remote -v  //


小结

Git鼓励大量使用分支：

查看分支：git branch

创建分支：git branch <name>

切换分支：git checkout <name>

创建+切换分支：git checkout -b <name>

合并某分支到当前分支：git merge <name>

删除分支：git branch -d <name>

3 分支管理策略
小结
git merge --no-ff -m "merge with no-ff" dev

Git分支十分强大，在团队开发中应该充分应用。

合并分支时，加上--no-ff参数就可以用普通模式合并，合并后的历史有分支，能看出来曾经做过合并，而fast forward合并就看不出来曾经做过合并。


小结

查看远程库信息，使用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，如果有冲突，要先处理冲突。


new study
add file into staged area   添加到暂存区


linux 常用的命令

sof -iTCP:8081 | grep LISTEN

kill pocessid

---
_Source: https://npm.io/package/app-myweb2 · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
