Ad Unit (Iklan) BIG

using command prompt publish code or files on github


the best way to upload your code to github is via the command line,

github

git init

git status

git add -A (if any changes file or add file use this command)

git commit -m "files added" ( update all file origin master)

git config --global user.email "you@example.com"
git config --global user.name "your name"

git remote add origin https://github.com/ajayvishu/testgithub.git

git push origin master (if u add other file github than u can this command)

git clone (capture file other user)

git pull origin master (updated file get from github cloud server)

Post a Comment

0 Comments