Convenient things you may encounter during blogging [must be top]

1. Picture size

Copy 500x200to your center back, modify the length and width, you can set the size of the picture
Insert picture description here

2. Separate

Horizontal line:

Four * ( ****) and
two minus signs ( --)

  • Line break:

<br>

3. Submit the git project to the remote warehouse

1、cd E:\\2020shixi\\MyTravel
2、git init

3、git status
4、git add .
5、git status

6、git commit -m "初始化工程"     提交项目,并作说明

7、git  remote -v
8、git remote  add XXX 刚刚复制的ssm地址   `qrhuawei`
9、git push XXX master (XXX这里是你的服务器名字)

If the submission is not successful, open the project's git\config and
manually enter the warehouse address

红色Is the name of your project. git
绿色is the add warehouse address
Insert picture description here

10、git push XXX master

Guess you like

Origin blog.csdn.net/qq_41209886/article/details/109254445