Skip to content

Latest commit

 

History

History
57 lines (31 loc) · 974 Bytes

git_topics.md

File metadata and controls

57 lines (31 loc) · 974 Bytes

Filter the topics

git topics

  1. git basics

what is git.

  1. create a project

  2. Initialize the repository

  3. Add some files

  4. Make a commit

  5. Git tree graph and commit object

  6. Pointing the current branch at the new commit

  7. Make a commit that is not the first commit (cool)

  8. Checkout a commit

  9. Create a branch

  10. Checkout a branch

  11. Check out a branch that is incompatible with the working copy

  12. Merge an ancestor

  13. Merge a descendent

  14. Merge commits

    • from different lineages
    • both madify the same file
  15. Merge conflicts and dealing with them

  16. Removing a file, show history changes

  17. Copy a repository

  18. Link a repository to another repository

  19. Remotes, what are they, how helpful ?

  20. Fetch a branch from a remote, Merge FETCH_HEAD

  21. Checkout someone's PR to test his changes

  22. Pull a branch from a remote

  23. Clone a repository

  24. Push a branch to a checked-out branch on a remote