Get Started. It's Free
or sign up with your email address
Git by Mind Map: Git

1. checkout

1.1. -b

1.2. SHA(commit ID)

1.3. -d

2. commit

3. log

4. status

5. gist

5.1. share

5.1.1. text

5.1.2. code for review <for error or any support>

5.2. gist.github.com

6. branch

6.1. my_branch_name

7. merge

7.1. conflicts?????

7.2. --abort

8. .gitignore<file>

9. add

9.1. . <all>

9.2. -p <recent added lines>

10. fetch

11. rebase

11.1. --continue

11.2. --abort

12. repository

12.1. creating

13. push

14. clone

14.1. <url (insure it is https://.. )>

14.2. download zipped

14.3. clone desktop

15. hostedin

15.1. github

16. pull

16.1. origin <remote>

16.1.1. master<your current branch>

17. blame

17.1. file_name

18. stash

18.1. list <list of stashed>

18.2. pop <get back stashed code>

19. tag

20. config

20.1. config --global user.email

20.2. config --global user.name

21. installation

21.1. apt-get install git <in ubuntu>

21.2. download from git website for windows

22. init