Advertisement
nucklear

GIT : Crear un repositorio GIT

Aug 9th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.32 KB | None | 0 0
  1. Global setup:
  2.  
  3.   Download and install Git
  4.   git config --global user.name "Your Name"
  5.   git config --global user.email
  6.  
  7.  
  8. Next steps:
  9.  
  10.   mkdir SomeFolder
  11.   cd SomeFolder
  12.   git init
  13.   touch README
  14.   git add README
  15.   git commit -m 'first commit'
  16.   git remote add origin git@github.com:username/SomeFolder.git
  17.   git push origin master
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement