Advertisement
Ikem

GitHub Quick Setup.txt

Jan 9th, 2017
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. Quick setup
  2.  
  3. We recommend every repository include a README, LICENSE, and .gitignore.
  4.  
  5. …or create a new repository on the command line
  6.  
  7. echo "# function-key-control" >> README.md
  8. git init
  9. git add README.md
  10. git commit -m "first commit"
  11. git remote add origin https://github.com/ikem-krueger/function-key-control.git
  12. git push -u origin master
  13.  
  14. …or push an existing repository from the command line
  15.  
  16. git remote add origin https://github.com/ikem-krueger/function-key-control.git
  17. git push -u origin master
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement