This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Be in the directory(Repository in Github) where files/directories needs to be pushed.Then enter the command | |
$git add . | |
#Get the status of the files/directories needs to be pushed. | |
$git status | |
#Now commit the changes into the repository. | |
$git commit -m "Message" | |
#To Push the changes, enter the following command and enter the credentials. |