├── .gitignore ├── .travis.yml ├── Img ├── git-flow-commands-without-flow.png ├── git-flow-commands.png └── git-logo.png ├── README.md ├── _config.yml └── other-sheets ├── git-cheat-sheet-ar.md ├── git-cheat-sheet-bn.md ├── git-cheat-sheet-de.md ├── git-cheat-sheet-el.md ├── git-cheat-sheet-es.md ├── git-cheat-sheet-hi.md ├── git-cheat-sheet-ko.md ├── git-cheat-sheet-pl.md ├── git-cheat-sheet-pt_BR.md ├── git-cheat-sheet-tr.md └── git-cheat-sheet-zh.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/.travis.yml -------------------------------------------------------------------------------- /Img/git-flow-commands-without-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/Img/git-flow-commands-without-flow.png -------------------------------------------------------------------------------- /Img/git-flow-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/Img/git-flow-commands.png -------------------------------------------------------------------------------- /Img/git-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/Img/git-logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/_config.yml -------------------------------------------------------------------------------- /other-sheets/git-cheat-sheet-ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/other-sheets/git-cheat-sheet-ar.md -------------------------------------------------------------------------------- /other-sheets/git-cheat-sheet-bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/other-sheets/git-cheat-sheet-bn.md -------------------------------------------------------------------------------- /other-sheets/git-cheat-sheet-de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/other-sheets/git-cheat-sheet-de.md -------------------------------------------------------------------------------- /other-sheets/git-cheat-sheet-el.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/other-sheets/git-cheat-sheet-el.md -------------------------------------------------------------------------------- /other-sheets/git-cheat-sheet-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/other-sheets/git-cheat-sheet-es.md -------------------------------------------------------------------------------- /other-sheets/git-cheat-sheet-hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/other-sheets/git-cheat-sheet-hi.md -------------------------------------------------------------------------------- /other-sheets/git-cheat-sheet-ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/other-sheets/git-cheat-sheet-ko.md -------------------------------------------------------------------------------- /other-sheets/git-cheat-sheet-pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/other-sheets/git-cheat-sheet-pl.md -------------------------------------------------------------------------------- /other-sheets/git-cheat-sheet-pt_BR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/other-sheets/git-cheat-sheet-pt_BR.md -------------------------------------------------------------------------------- /other-sheets/git-cheat-sheet-tr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/other-sheets/git-cheat-sheet-tr.md -------------------------------------------------------------------------------- /other-sheets/git-cheat-sheet-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanbilal/git-cheat-sheet/HEAD/other-sheets/git-cheat-sheet-zh.md --------------------------------------------------------------------------------