Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 766 Bytes

steps.md

File metadata and controls

20 lines (16 loc) · 766 Bytes

steps to sync a file from local repo(your system) to remote repo (github)

i am expecting you have already configured your github.if not, click_here for how-to

open cmd

  1. clone the remote repo to local machine git clone [link of remote repo]
  2. goto that directory which you just cloned using cd [file neme]
  3. git init
  4. copy/make your changes to the local directory you just cloned
  5. git pull
  6. for syncronizing all the files use git add . else git add [file name]
  7. git commit -m "message under double quotes" e.g git commit -m "updated file"
  8. git push it will syncronize to master branch

😄 happy coding ❤️