Answers for "how would you make changes to a repository on github inside a bash terminal?"

0

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

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.
Posted by: Guest on March-16-2022

Code answers related to "how would you make changes to a repository on github inside a bash terminal?"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language