Git

Git

Intermediate

Git is a distributed version control system to track changes in source code. Git was created by Linus Torvalds in 2005 for Linux kernel development. Git is the most widely used version control system. You could use git on a command line or using a graphical UI. You can use Git to travel back in time with respect to your source code and make changes. 

This competency includes an understanding of git-flow workflow, git rebasing, git tagging, working with tags, git reset, and git submodules. 

Key Competencies: 

  1. Gitflow - An understanding of the git-flow workflow and knowledge of how to use it effectively. 
  2. Rebase - Knowledge of the git rebase, how to do basic git rebase, and the difference between git merge and git rebase
    1. git checkout <branch_name>
    2. git rebase master
  3. Tags - Working with git tags, creating tags, listing, checkout, deleting tags.
    1. git tag 
    2. git tag v0
    3. git tag -a v1.1 -m “tag description”
  4. Stash - Understanding git stash and git clean
  5. Searching - Understanding git searching and git log searching 
    1. git grep -n <search_string>
    2. git grep --count <searchh_string>
    3. git log -S <search_string>
  6. Reset - Knowledge of git reset - Understanding soft-hard, mixed, when to use it, how to use it 
  7. Configs - Git configs - know the various git configs and how to use them 
  8. Hooks - Configuring various git hooks - 
    1. Client-Side - pre-commit, post-commit, pre-rebase, post-merge, etc. 
    2. Server-side - pre-receive, post-receive, etc. 
  9. Submodules - Working with git submodules. 
  10. Blame - Usage of git blame to be able to display the author of any changes made.
  11. Projects & Organization - Knowledge of how to create and maintain an organization and projects in a popular git host like Github.