init: Alfred preferences

This commit is contained in:
2026-03-26 09:22:38 +08:00
commit 3cad72b72c
13215 changed files with 108280 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git add ",
"uid" : "499331FC-81F4-494A-AE0A-2313AB8AFFA0",
"name" : "Add changes to the staging area",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git clone --depth=1 --branch=master {cursor}",
"uid" : "8D0CB826-879E-4C19-AAC0-A5CF429AA9A9",
"name" : "Clone a repository with only the latest commit and switch to the master branch",
"keyword" : "clone.master"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git checkout -b ",
"uid" : "0716D278-EE47-45C3-ACA3-C831152BD507",
"name" : "Create a branch",
"keyword" : "co.b"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git branch -d ",
"uid" : "265F18F5-18D9-4DF5-A5A3-EDB3E95680DB",
"name" : "Delete a branch",
"keyword" : "br.d"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git checkout .",
"uid" : "F38724C4-04F8-4803-B64A-E979F8E9BE11",
"name" : "Discard changes in the current directory and revert to the last commit",
"keyword" : "co.dot"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git --version",
"uid" : "C32C3167-0234-43B9-9B27-118924A4C37F",
"name" : "Get Git version information",
"keyword" : "version"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git rebase -i HEAD~{cursor}",
"uid" : "9975CD51-1E02-4659-B7AE-71732389F283",
"name" : "Git 互動式 rebase 至指定 commit",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git pull --ff-only",
"uid" : "057EF343-0A47-41FC-8DF3-1928188CED5A",
"name" : "Git 拉取並僅快進合併",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git commit --amend --no-edit",
"uid" : "428AE497-4877-421F-B42B-9696BF583593",
"name" : "Git 提交修改,不更改訊息。",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git log --all --pretty=format:\"%C(yellow)%h%Creset %C(cyan)%ad%Creset | %s%C(red)%d%Creset [%Cgreen%an%Creset]\" --graph --date=iso",
"uid" : "75D40C48-5BFC-49D5-BE20-397C004F5980",
"name" : "Git 提交記錄圖形化顯示命令",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git log --all --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=iso",
"uid" : "0ADA7687-B2CC-428C-A185-1D31C985DA3C",
"name" : "Git 提交記錄簡潔顯示命令",
"keyword" : "log.pretty.one"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git reflog",
"uid" : "0D794D96-6B2F-4EB8-99C0-7622FD4AB734",
"name" : "Git 查看引用日誌",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git branch -a",
"uid" : "7AB90A82-8FB1-4F2E-94F1-F854BF26F763",
"name" : "Git 查看所有分支",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --global alias.br branch",
"uid" : "099C741A-1EE8-4249-BB65-DC1A7A0D5DFE",
"name" : "Git 設定全域別名為 \"br\" 代表 \"branch\"",
"keyword" : "git config"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git branch",
"uid" : "06BF00EE-A774-4AF0-AC9B-8B14F333A79C",
"name" : "Git 顯示分支列表",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git status",
"uid" : "586D7255-92FF-4588-8347-83176B6A52AF",
"name" : "Git狀態",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git branch -m",
"uid" : "91C569F5-6139-4B04-A9F5-BE35773007B2",
"name" : "Rename a branch",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git add --all",
"uid" : "05074E32-CA88-489A-BA2F-A38E6BD80E6A",
"name" : "Update all files in the repository",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --global alias.ci commit",
"uid" : "0457FAD9-AB2B-4AA1-B3C3-86B14A3A2F19",
"name" : "alias.ci",
"keyword" : "alias.ci"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --global alias.co checkout",
"uid" : "8F003106-D471-4B14-94C2-1A3C9E97A58E",
"name" : "alias.co",
"keyword" : "alias.co"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --global alias.csw 'switch -c'",
"uid" : "A969F188-14B2-40C8-963F-59CFF8F7C7B7",
"name" : "alias.csw",
"keyword" : "alias.csw"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --global alias.lg \"log --all --graph --decorate --abbrev-commit --date=relative --format=format:'%C(bold blue)%h%C(reset) %C(bold green)(%ar)%C(reset) %C(white)%an%C(reset) %C(bold yellow)%d%C(reset) %C(white bold)%s%C(reset)'\"",
"uid" : "B8EAC7DA-9445-468F-A1FA-C0555E488529",
"name" : "alias.lg",
"keyword" : "alias.lg"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --global alias.st status",
"uid" : "5393E431-43D0-4F86-A2A3-2E707E74DBC6",
"name" : "alias.st",
"keyword" : "alias.st"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --global alias.sw 'switch'",
"uid" : "4BB78CD4-90FA-4E23-ACD1-F922691D7D86",
"name" : "alias.sw",
"keyword" : "alias.sw"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --global color.ui auto",
"uid" : "AA8A9B27-1EED-4205-AD00-322F87C6F191",
"name" : "git config --global color.ui auto",
"keyword" : "cfg.color"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --global user.name",
"uid" : "48490D50-4D29-436B-8A96-2D8529F36DFA",
"name" : "git config --global user.name",
"keyword" : "cfg.gname"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --list",
"uid" : "34FB7267-859C-4CFF-9AAC-A22EECB6F005",
"name" : "git config --list",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --local user.name",
"uid" : "74AE81B0-CF3D-4623-9FBA-A19E03B14727",
"name" : "git config --local user.name",
"keyword" : "cfg.lname"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config user.email",
"uid" : "29BEEB8F-D757-4FB7-9183-4810EEC84ECE",
"name" : "git config user.email",
"keyword" : "cfg.email"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config user.name",
"uid" : "F24058D6-D616-457C-A824-5F5AE8FC9D11",
"name" : "git config user.name",
"keyword" : "cfg.name"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git log --name-only",
"uid" : "3BE3DC3E-1A09-4FCE-8AAF-C5911A5E3802",
"name" : "git log --name-only",
"keyword" : "log.nameonly"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git log --oneline --grep {cursor}",
"uid" : "977DAA0B-CB6F-4250-BB3E-ED5A142D29CC",
"name" : "git log --oneline --grep",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git log --all --oneline --graph --decorate",
"uid" : "2AE7D396-A9DA-4C6C-BFE1-49905A463DCC",
"name" : "git log 完整查看提交紀錄(一行)及分支圖示",
"keyword" : "log.pretty.full"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git merge",
"uid" : "4356E160-FE46-4F89-B255-D31E5B35278D",
"name" : "git merge",
"keyword" : "merge"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git mv ",
"uid" : "E07D3716-F062-449C-9B5C-6EE95ED140AB",
"name" : "git mv",
"keyword" : "mv"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git mv <old-name> <new-name>",
"uid" : "D447F158-1098-4B2D-BE53-823C28FF0D42",
"name" : "git mv <old-name> <new-name>",
"keyword" : "mv.rename"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git push",
"uid" : "1F13A56F-5861-4225-8E6A-49585B765275",
"name" : "git push",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git switch -c new-feature",
"uid" : "A9297D6B-B920-4BEA-B2B3-EFBC0476C408",
"name" : "git switch -c new-feature",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --global --edit",
"uid" : "919C5586-606A-4204-983F-B4FFF020658C",
"name" : "git 全局設定編輯",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --global user.email",
"uid" : "468E77A8-E6D1-4E77-AD5C-C718EFFF056C",
"name" : "git_config_global_user_email",
"keyword" : "git config"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --local user.email",
"uid" : "89471EA4-BED2-4D79-BB6F-61681DFBD8C5",
"name" : "git_config_local_user_email",
"keyword" : "git config"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>snippetkeywordprefix</key>
<string>git.</string>
<key>snippetkeywordsuffix</key>
<string></string>
</dict>
</plist>

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git stash",
"uid" : "4E7967E2-1C07-4C49-83ED-1B2E805DB024",
"name" : "儲存尚未提交的改動",
"keyword" : "stash"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git checkout ",
"uid" : "BEB20294-8589-45E3-AD7F-0E57546C2EF7",
"name" : "切換分支",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git init",
"uid" : "CD35A8B6-769C-42E0-8BD0-0A1685271901",
"name" : "初始化 Git 倉庫",
"keyword" : "init"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git rm {cursor} --cached",
"uid" : "35C546F1-57CF-4154-A0DD-AC44A131D83A",
"name" : "刪除 git 工作區中的暫存檔案",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git rm {cursor}",
"uid" : "48FACFA8-3952-4E2C-8032-3E7589901B6D",
"name" : "刪除git檔案",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git restore --staged {cursor}",
"uid" : "F0154536-10A3-430E-8FBF-5124DD084974",
"name" : "取消已暫存檔案",
"keyword" : "unstage"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git reset HEAD~1",
"uid" : "8FD6564E-F994-404E-8655-A0DA6284CD6E",
"name" : "回溯最後一次提交記錄 - 使用 git reset HEAD~1",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git reset --hard ",
"uid" : "DF557261-F8C6-4444-8713-C131B224CDEE",
"name" : "回退到上一個版本",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git reset --hard HEAD~1",
"uid" : "A35C8013-4F10-4E73-979B-9C94B54E38A1",
"name" : "回退至上一個版本",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git commit -m \"{cursor}\"",
"uid" : "AB976B9A-7B52-4102-92E1-9987709615DE",
"name" : "建立 Git Commit含訊息",
"keyword" : "commit.msg"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "echo -e \"# Python cache files\\n__pycache__\/\\n*.py[cod]\\n*.pyo\\n*.pyd\\n\\n# Virtual environments\\nvenv\/\\nenv\/\\n\\n# Distribution \/ Packaging\\nbuild\/\\ndist\/\\n*.egg-info\/\\n*.egg\\n\\n# Environment variables\\n.env\\n\\n# IDE \/ Editor directories and files\\n.vscode\/\\n.idea\/\\n*.swp\\n\\n# Operating system files\\n.DS_Store\\nThumbs.db\" > .gitignore",
"uid" : "29F8FC25-5B9D-440D-934A-1A81BB197561",
"name" : "建立 Python 專案用 .gitignore",
"keyword" : "gitignore.py"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git commit --allow-empty",
"uid" : "5F916F23-E3F6-4C02-AC1B-7E44403A64E1",
"name" : "建立空 Commit",
"keyword" : "commit.empty"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git commit --allow-empty-message --allow-empty --no-edit",
"uid" : "727E6880-B7D2-4AF7-A503-8C289821D785",
"name" : "建立空白 Commit",
"keyword" : "commit.empty"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git clone {clipboard:trim}",
"uid" : "4E1DDFBD-ADC4-4455-8E4F-728A9715766B",
"name" : "從剪貼簿 Clone 倉庫",
"keyword" : "clone.clip"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git archive -o latest.zip HEAD",
"uid" : "59416CF4-B776-482D-8C56-76997D6E33ED",
"name" : "打包目前程式碼latest.zip",
"keyword" : "archive.zip"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git push origin main",
"uid" : "6EEC52D2-EE55-4C77-AFAA-19D35D8B7A74",
"name" : "推送本地變更至遠端 main",
"keyword" : "push.main"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git log",
"uid" : "BCAD6644-A38B-47FA-82EE-A4EDFF60D88A",
"name" : "查看 Git 日誌",
"keyword" : "log"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git log --all --pretty=oneline --graph",
"uid" : "1A82ED2E-90F4-4B57-A944-9C767437C1F3",
"name" : "查看 Git 的完整提交歷史圖",
"keyword" : "log.graph.full"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --global --list",
"uid" : "FF3963B9-8454-4742-A7A5-CB63AB65E3D7",
"name" : "查看全域 Git 設定",
"keyword" : "cfg.list"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git diff --cached",
"uid" : "49BFE86B-9190-435D-BE56-5DBC2D3D42E8",
"name" : "查看已暫存變更",
"keyword" : "diff.cache"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git log --all --oneline --graph",
"uid" : "93409505-03E2-4CB8-9D89-7B41D4EEFAFC",
"name" : "查看所有分支提交圖",
"keyword" : "log.graph"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git blame ",
"uid" : "728BB709-9B80-4EF0-A8C8-CB96AB6AE74C",
"name" : "查看每行修改紀錄",
"keyword" : "blame"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git log --since=2022-12-14",
"uid" : "3FF24BAF-320F-40B6-A975-1F79873DFF77",
"name" : "查看自2022年12月14日以來的git log",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git clean -n",
"uid" : "DB4E4839-FF66-4B0A-A323-90EE0332AA0D",
"name" : "檢查未跟蹤的檔案",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git ls-files",
"uid" : "0E9945B5-D414-46E1-AB24-23421525C533",
"name" : "檢視 Git 中目前追蹤的檔案",
"keyword" : "lsfiles"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git diff",
"uid" : "876B5D1B-6ABF-484A-8225-527830DCDF08",
"name" : "檢視 Git 差異",
"keyword" : "diff"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git log --stat",
"uid" : "42A1EC6C-2699-4893-8659-2CC135193EE1",
"name" : "檢視 Git 提交紀錄統計",
"keyword" : "log.stat"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git log -p -2",
"uid" : "3C8AAA14-1FD6-4ED0-84A9-D1EFB8630706",
"name" : "檢視 git log 的最近兩次變更",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git --no-pager diff",
"uid" : "943BB191-9CC0-4C72-8577-BE931DCF7B13",
"name" : "檢視工作目錄與版本庫差異",
"keyword" : "diff.working"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git log --oneline --author {cursor}",
"uid" : "B112F731-D27F-4D9F-803F-0AC6F2077169",
"name" : "檢視指定作者的提交歷程",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git log --since=2.weeks",
"uid" : "23F8E80B-4AEE-4DDC-AEAC-0D37CF511518",
"name" : "檢視過去兩週的 git 提交紀錄",
"keyword" : ""
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git clean -f",
"uid" : "0A11FEFE-570D-4356-8395-BEDB92988503",
"name" : "清除 Git 不必要的檔案",
"keyword" : "clean"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git clean -dfx",
"uid" : "9EF168F1-7084-4B31-AD66-329D32D2970A",
"name" : "清除 Git 不被追蹤的檔案",
"keyword" : "clean.all"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git clean -df",
"uid" : "34A7ED48-3542-4ED6-981F-A0B80652209E",
"name" : "清除未追蹤檔案與資料夾",
"keyword" : "clean.dir"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --global user.email \"{cursor}\"",
"uid" : "791EB40C-C59B-46D8-885E-B2193CF226A2",
"name" : "設定 Git 全域使用者 Email",
"keyword" : "config.email"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config --global user.name \"{cursor}\"",
"uid" : "321517A5-76DC-4EFC-BD96-619ADE7CFF53",
"name" : "設定 Git 全域使用者名稱",
"keyword" : "config.name"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config user.email \"{cursor}\"",
"uid" : "73803056-D8F5-4876-B0D8-E4BAFE11DCE9",
"name" : "設定 Git 專案使用者 Email",
"keyword" : "config.email.local"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git config user.name \"{cursor}\"",
"uid" : "79E70B4C-3F03-44EB-970D-E96972FBC9D3",
"name" : "設定 Git 專案使用者名稱",
"keyword" : "config.name.local"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git checkout -- {cursor}",
"uid" : "AAC681E7-FAD2-45EA-90F0-16BEBC64089F",
"name" : "還原檔案變更",
"keyword" : "restore"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git restore {cursor}",
"uid" : "C4249A02-FA00-45AB-88D6-C01B2B34FE34",
"name" : "還原檔案變更",
"keyword" : "restore.file"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git reset",
"uid" : "6AAED20E-23A4-4D1B-9FB8-9C69A03118DD",
"name" : "重置暫存區檔案 - 使用 git reset",
"keyword" : "reset"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git --no-pager diff --cached",
"uid" : "41105D90-BAB6-4D1A-B540-7CD06C2196E3",
"name" : "顯示已加入暫存區的變更",
"keyword" : "diff.cache"
}
}

View File

@@ -0,0 +1,8 @@
{
"alfredsnippet" : {
"snippet" : "git remote -v",
"uid" : "B7F5227B-9E43-47C6-888E-9E2CED73CB83",
"name" : "顯示遠端來源與網址",
"keyword" : "remote"
}
}