Information Systems III | UIA | Daniel Fernández Solano.
-
Set Up Github Bash
$ git config --global user.name "xxxxxxxx"
$ git config --global user.email "[email protected]"
$ git config core.autocrlf false
-
Create Repository on Web Page.
-
Then Init, commit and push local source $ git remote add origin https://github.com/xxxxxx/xxxxxx.git
$ git init
$ git add .
$ git commit -m "xxxxxxxxx"
$ git push -u origin master