Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 564 Bytes

git_commands.md

File metadata and controls

10 lines (7 loc) · 564 Bytes

List of git commands with used:

  • git init: initialize a repository in the local directory
  • git add filename: instruct git to start tracking changes to file filename
  • git commit -m 'message text' filename: take a snapshot of filename tagging it with message message text
  • git status: get current status of current repository
  • git log: visualize history of current repository

A git tutorial for beginners: the fisr six chapters of the Software Carpentry “Introduction to git” lecture