Guest User

Untitled

a guest
Mar 23rd, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. -------- GIT HUB BASICS-----------
  2. MAINL PHASES IN USING A GIT
  3. 1=>INITIALISING THE GIT REPOSITORY
  4. git init
  5. 2=>GIVING USER INFORMATION
  6. 1)USER NAME
  7. git config user.name "your name"
  8. 2)EMAIL
  9. git config user.email "your email address"
  10. 3=>CLONING OR COPYING THE FILES.
  11. git clone <your repository address>
  12. 4=>ADDING REMOTE REPOSITORY
  13. git remote add <your remote repository address>
  14. 5=>ADD STAGED FILES
  15. git add <file name>
  16. 6=>COMMIT FILES
  17. git commit "your commit commen"
  18. 7=>PUSH FILES TO THE REMOTE REPOSITORY.
  19. git push -u origin master
Add Comment
Please, Sign In to add comment