GIT - 4
how to commit, push & pull from github ======================================= ->login into mumbai EC2 instance -> create one directory and go inside it -> git init -> touch myfile (put some data) -> git status -> git add . (like adding a file in staging area) -> git commit -m "1st commit from mumbai" (like adding a file in local repo) -> git status -> git log -> git show <commit-id> -> git remote add origin <centralgit url> -> git push -u Origin master (enter username and password) Recently There is having a change in accessing the github. Recently github have started token system for transferring files. Need to login github >> Settings >> Developer settings >> Personal Access Tokens >> Generate new token >> Give the name for the token and select the repo in the scope.... After the token is generated copy the code in the notepad. Therefore while PUSH and PULL to and from ORIGIN you ...