| title | description |
|---|---|
YAML Front Matter |
A very simple way to add structured data to a page. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| POST / HTTP/1.1 | |
| Host: localhost | |
| User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 | |
| Next-Action: x | |
| Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryx8jO2oVc6SWP3Sad | |
| Content-Length: 459 | |
| ------WebKitFormBoundaryx8jO2oVc6SWP3Sad | |
| Content-Disposition: form-data; name="0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function moveEnd(obj) { | |
| obj.focus(); | |
| var len = obj.value.length; | |
| if (document.selection) { | |
| var sel = obj.createTextRange(); | |
| sel.moveStart('character', len); | |
| sel.collapse(); | |
| sel.select(); | |
| } else if (typeof obj.selectionStart == 'number' && typeof obj.selectionEnd == 'number') { | |
| obj.selectionStart = obj.selectionEnd = len; |
#Git 基本操作
##配置个人信息
git config --global user.name XXX
git config --global user.email XXX@xxx.com
##从服务器克隆下来