How Would You Make Changes To A Repository On Github

[Solved] How Would You Make Changes To A Repository On Github | Shell - Code Explorer | yomemimo.com
Question : how would you make changes to a repository on github inside a bash terminal?

Answered by : livingafk

1. You need to clone the repository to your computer by doing --> git clone [link of repository]
2. After you have finished your work add your updated files/folders --> git add [files/folders]
3. Give a message to your commit by --> git commit -m "[message]"
4. Finally in order to see the changes in the repository use --> git push	This is tested and works for gitlab. 

Source : | Last Update : Wed, 23 Mar 22

Answers related to how would you make changes to a repository on github inside a bash terminal

Code Explorer Popular Question For Shell