Answers for "how to set up github"

1

how to set up git for github

$ git config --global user.name "Your name here"
$ git config --global user.email "[email protected]"
Posted by: Guest on September-06-2020
0

git hub set up

$ tar -zxf git-2.8.0.tar.gz
$ cd git-2.8.0
$ make configure
$ ./configure --prefix=/usr
$ make all doc info
$ sudo make install install-doc install-html install-info
Posted by: Guest on December-10-2020
-3

set up git with github

$ git init
Posted by: Guest on December-10-2019

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language