Guest User

Untitled

a guest
Feb 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #Create the directory, navigate into it and initialize it as a git repository
  2. mkdir my-repo && cd my-repo && git init
  3. #Create a new file and add the file to the next commit
  4. touch README.md && git add README.md
  5. #Commit to our local repository
  6. git commit -m "Initial source code commit"
Add Comment
Please, Sign In to add comment