常用命令

项目拷贝

1.项目右键 –> properties –> Web Project Settings –> 修改Context root

2.pom.xml

3.工作空间中找到当前项目下.project文件

4.工作空间中找到当前项目,打开.settings文件夹,找到org.eclipse.wst.common.component文件

5..component

hexo 记录

1.hexo new ‘页面名称’

2.hexo clean 清除

3.hexo g

4.hexo d

5.hexo server 本地起服务

git备份hexo源码

1、cd 本地分支里
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
git branch

* hexo
master

git remote –v

若什么都没有,则和上游已断联系,拉不了代码也推不了代码

加关联
git remote add origin https://github.com/ikangbow/ikangbow.github.io

git fetch origin

再次检查远程仓库,显示对应的clone地址
git remote –v

origin https://github.com/ikangbow/ikangbow.github.io (fetch)
origin https://github.com/ikangbow/ikangbow.github.io (push)

本地git 文件添加
git add .

本地git 提交
git commit -m "备注"
2、进入H:\hexo\ikangbow.github.io目录右键

点击黄框最后一个按钮push

依次点击黄框的按钮即可提交最新代码到到远程仓库