ofrendo
3/23/2016 - 8:06 AM

After creating a repository in the browser: Pushing to it

After creating a repository in the browser: Pushing to it

# in the directory
git init 
git remote add origin git@github....

# verify 
git remote -v

# Initial push
git add -A
git commit -m "Initial commit"
git push --set-upstream origin master