Logo
全部
加密
转换
Web
图片
开发
网络
数学
文本

转模块

  • json

    json

  • base64

    base64

  • timestamp

    timestamp

  • urlEncoder

    urlEncoder

  • password

    password

  • textDiff

    textDiff

  • wordCounter

    wordCounter

  • markdownPreview

    markdownPreview

  • imageCompressor

    imageCompressor

  • excalidraw

    excalidraw

  • uuidGenerator

    uuidGenerator

  • tokenGenerator

    tokenGenerator

  • hashText

    hashText

  • bcrypt

    bcrypt

  • ulidGenerator

    ulidGenerator

  • encryption

    encryption

  • bip39Generator

    bip39Generator

  • hmacGenerator

    hmacGenerator

  • rsaKeyPairGenerator

    rsaKeyPairGenerator

  • passwordStrengthAnalyser

    passwordStrengthAnalyser

  • pdfSignatureChecker

    pdfSignatureChecker

  • dateTimeConverter

    dateTimeConverter

  • integerBaseConverter

    integerBaseConverter

  • romanNumeralConverter

    romanNumeralConverter

  • base64FileConverter

    base64FileConverter

  • colorConverter

    colorConverter

  • caseConverter

    caseConverter

  • textToNatoAlphabet

    textToNatoAlphabet

  • textToBinary

    textToBinary

  • textToUnicode

    textToUnicode

  • yamlToJsonConverter

    yamlToJsonConverter

  • yamlToToml

    yamlToToml

  • jsonToYamlConverter

    jsonToYamlConverter

  • jsonToToml

    jsonToToml

  • tomlToJson

    tomlToJson

  • tomlToYaml

    tomlToYaml

  • xmlToJson

    xmlToJson

  • jsonToXml

    jsonToXml

  • listConverter

    listConverter

  • htmlEntities

    htmlEntities

  • urlParser

    urlParser

  • deviceInformation

    deviceInformation

  • basicAuthGenerator

    basicAuthGenerator

  • metaTagGenerator

    metaTagGenerator

  • otpCodeGeneratorAndValidator

    otpCodeGeneratorAndValidator

  • mimeTypes

    mimeTypes

  • jwtParser

    jwtParser

  • keycodeInfo

    keycodeInfo

  • slugifyString

    slugifyString

  • htmlWysiwygEditor

    htmlWysiwygEditor

  • userAgentParser

    userAgentParser

  • httpStatusCodes

    httpStatusCodes

  • jsonDiff

    jsonDiff

  • safelinkDecoder

    safelinkDecoder

  • Git 命令速查

    Git 常用命令参考手册

  • randomPortGenerator

    randomPortGenerator

  • crontabGenerator

    crontabGenerator

  • jsonMinify

    jsonMinify

  • jsonToCsv

    jsonToCsv

  • sqlPrettify

    sqlPrettify

  • chmodCalculator

    chmodCalculator

  • dockerRunToDockerComposeConverter

    dockerRunToDockerComposeConverter

  • xmlFormatter

    xmlFormatter

  • yamlViewer

    yamlViewer

  • emailNormalizer

    emailNormalizer

  • regexTester

    regexTester

  • regexMemo

    regexMemo

  • ipv4SubnetCalculator

    ipv4SubnetCalculator

  • ipv4AddressConverter

    ipv4AddressConverter

  • ipv4RangeExpander

    ipv4RangeExpander

  • macAddressLookup

    macAddressLookup

  • macAddressGenerator

    macAddressGenerator

  • ipv6UlaGenerator

    ipv6UlaGenerator

  • qrCodeGenerator

    qrCodeGenerator

  • wifiQrCodeGenerator

    wifiQrCodeGenerator

  • svgPlaceholderGenerator

    svgPlaceholderGenerator

  • cameraRecorder

    cameraRecorder

  • mathEvaluator

    mathEvaluator

  • etaCalculator

    etaCalculator

  • percentageCalculator

    percentageCalculator

  • chronometer

    chronometer

  • temperatureConverter

    temperatureConverter

  • byteUnitConverter

    byteUnitConverter

  • benchmarkBuilder

    benchmarkBuilder

  • loremIpsumGenerator

    loremIpsumGenerator

  • emojiPicker

    emojiPicker

  • stringObfuscator

    stringObfuscator

  • numeronymGenerator

    numeronymGenerator

  • asciiTextDrawer

    asciiTextDrawer

  • phoneParserAndFormatter

    phoneParserAndFormatter

  • ibanValidatorAndParser

    ibanValidatorAndParser

MCP

Git 命令速查

Setup

3 commands

git config --global user.name "Name"

Set global username

git config --global user.email "email"

Set global email

git config --list

List all config settings

Init

3 commands

git init

Initialize a local repository

git clone <url>

Clone a remote repository

git clone <url> <dir>

Clone into a specific directory

Staging

8 commands

git status

Show working tree status

git add <file>

Stage a specific file

git add .

Stage all changes

git add -p

Stage changes interactively

git diff

Show unstaged changes

git diff --staged

Show staged changes

git restore <file>

Discard working directory changes

git restore --staged <file>

Unstage a file

Committing

6 commands

git commit -m "message"

Commit staged changes

git commit -am "message"

Stage tracked files and commit

git commit --amend

Modify the last commit

git log

Show commit history

git log --oneline --graph

Compact graph log

git show <commit>

Show commit details

Branching

9 commands

git branch

List local branches

git branch -a

List all branches (including remote)

git branch <name>

Create a new branch

git checkout <branch>

Switch to a branch

git checkout -b <branch>

Create and switch to new branch

git switch <branch>

Switch branch (modern)

git switch -c <branch>

Create and switch (modern)

git branch -d <branch>

Delete a merged branch

git branch -D <branch>

Force delete a branch

Merging

5 commands

git merge <branch>

Merge branch into current

git merge --no-ff <branch>

Merge with a merge commit

git rebase <branch>

Rebase onto a branch

git rebase -i HEAD~n

Interactive rebase last n commits

git cherry-pick <commit>

Apply a specific commit

Stashing

7 commands

git stash

Stash working changes

git stash push -m "msg"

Stash with a message

git stash list

List stashes

git stash pop

Apply and remove latest stash

git stash apply stash@{n}

Apply a specific stash

git stash drop stash@{n}

Delete a stash

git stash clear

Remove all stashes

Viewing

6 commands

git log --author="name"

Filter commits by author

git log --since="2 weeks ago"

Commits in last 2 weeks

git blame <file>

Show who changed each line

git diff <branch1>..<branch2>

Diff between two branches

git tag

List all tags

git tag -a v1.0 -m "msg"

Create an annotated tag

Remotes

9 commands

git remote -v

List remote connections

git remote add origin <url>

Add a remote

git fetch origin

Fetch from remote

git pull

Fetch and merge from remote

git pull --rebase

Fetch and rebase from remote

git push origin <branch>

Push branch to remote

git push -u origin <branch>

Push and set upstream

git push --force-with-lease

Safe force push

git push origin --delete <branch>

Delete remote branch

Undo

6 commands

git revert <commit>

Revert a commit (safe)

git reset --soft HEAD~1

Undo last commit, keep staged

git reset --mixed HEAD~1

Undo last commit, keep unstaged

git reset --hard HEAD~1

Undo last commit, discard changes

git clean -fd

Remove untracked files/dirs

git reflog

Show history of HEAD movements