kofi847

Untitled

Mar 30th, 2022 (edited)
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.28 KB | None | 0 0
  1. git init // initializing git in your project
  2. git add . // staging all files in your folder
  3. git commit -m "first commit" // commiting the files
  4. git remote add origin <URL> // <URL> remote url on github repo
  5. //git push --set-upstream origin master//
  6. git push origin master
  7.  
  8.  
  9. git push
Add Comment
Please, Sign In to add comment