Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 619 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 619 Bytes

introduction of Git

Basic Commands of Git.

This section describes the basic of Git. It includes how to push to/ pull from the remote repository.

$ git status
$ git add <Filename>
  <filename> : Add designated file to upload at remote repository.
  -u : Update all files which already exist in the remote repository.
  
$ git commit -m <Message>
  <Message> : brief message for updating.
  -a --allow-empty-message -m '' : 

$ git push
  Push the updated file to remote repository.

$ git pull
  Pull the files to local repository.

Tags and Release