/udacity_repo

This is a repository to gain familiarity with git and Github.

GNU General Public License v3.0GPL-3.0

udacity_repo

This is a repository to gain familiarity with git and Github.

Git Commands

  • git clone repos_url: clone the repository to your local machine
  • git commit -m messages : commit changes in repository and add messages about the changes
  • git push : push the changes in local repository to remote repository such as Github
  • git add file_one file_two : add files to track to repository
  • git brach : check active branch
  • git checkout -b new_brach_name : create and move to new branch
  • git checkout brach_name : move to another brach
  • git brach -d branch_name : delete branch