├── .gitignore ├── LICENSE ├── README.md ├── git-cheat-sheet.md ├── images ├── git-cherry-pick.jpg ├── git-flow-commands-without-flow.png ├── git-key.png ├── git-reset.jpg ├── git-reset1.png ├── git-reset2.png ├── git-reset3.png ├── git-reset4.png ├── git-reset5.png ├── git-sshkey-error.png ├── git-test.png ├── github-release1.png ├── github-release2.png ├── github-release3.png ├── github-release4.png ├── github-release5.png ├── github-ssh.png ├── img1.jpg └── img2.jpg └── resource ├── progit.zh.pdf └── 苏玲《玩转Git三剑客》-极客时间.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | .lh 2 | .vscode 3 | .DS_Store 4 | .idea 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/README.md -------------------------------------------------------------------------------- /git-cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/git-cheat-sheet.md -------------------------------------------------------------------------------- /images/git-cherry-pick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/git-cherry-pick.jpg -------------------------------------------------------------------------------- /images/git-flow-commands-without-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/git-flow-commands-without-flow.png -------------------------------------------------------------------------------- /images/git-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/git-key.png -------------------------------------------------------------------------------- /images/git-reset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/git-reset.jpg -------------------------------------------------------------------------------- /images/git-reset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/git-reset1.png -------------------------------------------------------------------------------- /images/git-reset2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/git-reset2.png -------------------------------------------------------------------------------- /images/git-reset3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/git-reset3.png -------------------------------------------------------------------------------- /images/git-reset4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/git-reset4.png -------------------------------------------------------------------------------- /images/git-reset5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/git-reset5.png -------------------------------------------------------------------------------- /images/git-sshkey-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/git-sshkey-error.png -------------------------------------------------------------------------------- /images/git-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/git-test.png -------------------------------------------------------------------------------- /images/github-release1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/github-release1.png -------------------------------------------------------------------------------- /images/github-release2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/github-release2.png -------------------------------------------------------------------------------- /images/github-release3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/github-release3.png -------------------------------------------------------------------------------- /images/github-release4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/github-release4.png -------------------------------------------------------------------------------- /images/github-release5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/github-release5.png -------------------------------------------------------------------------------- /images/github-ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/github-ssh.png -------------------------------------------------------------------------------- /images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/img1.jpg -------------------------------------------------------------------------------- /images/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/images/img2.jpg -------------------------------------------------------------------------------- /resource/progit.zh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/resource/progit.zh.pdf -------------------------------------------------------------------------------- /resource/苏玲《玩转Git三剑客》-极客时间.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimuch/iGit/HEAD/resource/苏玲《玩转Git三剑客》-极客时间.pdf --------------------------------------------------------------------------------