1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
#get your version git --version git init git add "file-name" # get your upload file status git status #save change local git commit -m " name" #push the commits to git cloud #show my branch git branch git push origin "name branch" # to upload the files to github git push #get logs git log |