Please enable JavaScript.
Coggle requires JavaScript to display documents.
Push Data To GIT HUB (after installing the git bash (Create a Folder…
Push Data To GIT HUB
after installing the git bash
Create a Folder
Place Your code In the folder
open the CMD
cd To the Folder Path
1- git add .
\\adds all files
2- git commit -m "comment commit"
3- git log
4- //creating the connection and uploading the files
1- git remote add aliasName
https://github.com/salahhero/shopingkingdom.git
\\seting up an alias of the url
\\pushing the data to remote repository
2- git push -u alisName master
3-Enter account credentials
git config --global user.name "salahhero"
git config --global user.email
"xxxx@gmail.com
"
If u Make any changes
1- git add .
//for all files
git add test.test
//one file
2- git commit -m "message"
3- git push
0- git status