Skip to content

Instantly share code, notes, and snippets.

View GitVishwa's full-sized avatar
🤠
On Fire

Vishwanath GitVishwa

🤠
On Fire
View GitHub Profile
@GitVishwa
GitVishwa / Push_Files_Repository_Terminal.txt
Last active June 28, 2017 17:39
Push files to a specific repository through linux terminal
# 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.