Guest User

Untitled

a guest
Jun 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. TIL - Today I learned
  2.  
  3.  
  4.  
  5.  
  6. ### 2018/06/18
  7. Today I learned how to create new repository in Github to push my code to Github
  8.  
  9. in Github +New Repository
  10.  
  11. + The answer to every interview question about code is "It depends"
  12.  
  13. + Highlight and do COMMAND D... to edit multiple texts.
  14.  
  15. ### 2018/06/17
  16. Do git init only once per file.
  17. Write code > do git add > do git commit
  18.  
  19. ### 2018/06/17
  20. Git function to return to terminal is :q
  21.  
  22. ### 2018/06/17
  23. Git is version control. Save your original copy, while still being able to edit.
  24.  
  25. ### 2018/06/17
  26. Get super familiar with the terminal.
  27.  
  28. ### 2018/06/17
  29. Learning how to use the terminal.
  30.  
  31. Command + space to open Spotlight and search
  32.  
  33. ls - shows stuff
  34. cd - move to folder
  35. cd.. - go back one
  36. cd../.. - multiple go backs
  37. # cd can only go one directory at a time
  38. rm - delete file # be careful with this command
  39. #rm -rf DO NOT DO, WILL SCREW YOUR COMPUTER
  40.  
  41.  
  42. ### 2018/06/17
  43. Blog your progress on Medium, for employers who may potentially read it. To help you show how you worked through problems
  44.  
  45. ### 2018/06/17
  46. You can write code using *triple backticks*
  47. ```ruby
  48. def hello
  49. puts "hello world"
  50. end
  51. ```
  52.  
  53. ### 2018/06/17
  54. Gists are a tool for sharing texts!
Add Comment
Please, Sign In to add comment