Home GitHub, start! (2)
Post
Cancel

GitHub, start! (2)

1. GitHub clone

bring data to my local environment

1
git clone [repository]

Respository have to GitHub storage URL

image

2. Add

Add changes from the working directory to the staging area

1
git add --all

3. commit

  • Use to save changes until the next commit
  • Send changes to remote
    1
    
    git commit -m [commit massage]
    

4. push

submit and publish the changed data

1
git push -u origin main
This post is licensed under CC BY 4.0 by the author.