Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Global setup:
- Download and install Git
- git config --global user.name "Your Name"
- git config --global user.email
- Next steps:
- mkdir SomeFolder
- cd SomeFolder
- git init
- touch README
- git add README
- git commit -m 'first commit'
- git remote add origin git@github.com:username/SomeFolder.git
- git push origin master
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement