Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 530 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 530 Bytes

Readme

Getting Started

  1. Clone the repo and configure it
    git clone https://github.com/skillplot/linux-basics.git
    git config user.name <user_name>
    git config user.email <user_email>
    git config -l
  2. To add new/updates changes
    git status
    ## put add all the changes
    git add -A
    ## example to add particular file
    git add README.md
    git status
    git commit -m'put some details on the changes'
    git push
    git status