View on GitHub

reading-notes

A-C-P

A-C-P is a way to dowoload repositories from github to your computer and edit it in the code editor then upload it back to github again.

A-C-P steps :

  1. Take the repository share link (url).
  2. cloning by type git clone [url].
  3. then type code . to open it on VSC and you can edit it and make change and save it.
  4. type git add . to save everything.
  5. type git stauts to know everythings is svaed.
  6. then write what you change by typing git commit -m “what you change”
  7. finally you will write git push origin main then put your username and password.