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